WmlMobileTextWriter.AddFormVariable(String, String, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a variable to be initialized when the browser renders the form. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
void AddFormVariable(System::String ^ clientID, System::String ^ value, bool generateRandomID);
public void AddFormVariable (string clientID, string value, bool generateRandomID);
member this.AddFormVariable : string * string * bool -> unit
Public Sub AddFormVariable (clientID As String, value As String, generateRandomID As Boolean)
Parameters
- clientID
- String
The identifier for the control containing the variable to initialize.
- value
- String
The value to which the variable is initialized when the browser renders the form.
- generateRandomID
- Boolean
true
to encrypt the identifier for the control; otherwise, false
.
Remarks
All references to the client identifier on the page are mapped, resulting in the same postback regardless of mapping. The AddFormVariable method also can scramble client IDs that must be encrypted for security reasons. Only visible controls generate variables.