MobilePage::ActiveForm Property

 

Gets or sets the page's currently active form. This API is obsolete. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site.

Namespace:   System.Web.UI.MobileControls
Assembly:  System.Web.Mobile (in System.Web.Mobile.dll)

public:
[BrowsableAttribute(false)]
[BindableAttribute(false)]
property Form^ ActiveForm {
	Form^ get();
	void set(Form^ value);
}

Property Value

Type: System.Web.UI.MobileControls::Form^

The page's currently active form.

Exception Condition
Exception

The page does not contain any forms.

When a page is initially rendered, the first form in the page is automatically made active. On subsequent postbacks, another form might be made active, either by programmatically setting this property, or as a result of user navigation through a Link control.

The following example demonstrates how to use the ActiveForm property of a Form control. If the current mobile device allows for access keys for controls, the button will display the access key that submits the form.

System_CAPS_noteNote

The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information, see ASP.NET Web Forms Page Code Model.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: