UpWmlMobileTextWriter.RenderTextBox Method

Definition

Renders a text box element. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 override void RenderTextBox(System::String ^ id, System::String ^ value, System::String ^ format, System::String ^ title, bool password, int size, int maxLength, bool generateRandomID, bool breakAfter);
public override void RenderTextBox (string id, string value, string format, string title, bool password, int size, int maxLength, bool generateRandomID, bool breakAfter);
override this.RenderTextBox : string * string * string * string * bool * int * int * bool * bool -> unit
Public Overrides Sub RenderTextBox (id As String, value As String, format As String, title As String, password As Boolean, size As Integer, maxLength As Integer, generateRandomID As Boolean, breakAfter As Boolean)

Parameters

id
String

Identifies the control.

value
String

Specifies the initial value of the text box.

format
String

Specifies an optional WML format string.

title
String

Contains the title of the text box.

password
Boolean

Specifies the password.

size
Int32

Sets the size of the string.

maxLength
Int32

Specifies the maximum length of the string.

generateRandomID
Boolean

Determines whether the identifier for the control (ID) is encrypted.

breakAfter
Boolean

Set to true if a break is required after the control is rendered.

Applies to

See also