WebForm
The WebForm object is used to generate common HTML controls in a simple and programmatic way.
Methods
|
Button
|
Returns a HTML button with the specified string name, string value, boolean disabled and string custom arguments.
Arguments:
(Name, Value, Disabled, Custom)
|
|
CheckBox
|
Returns a HTML checkbox with the specified string name, string value, boolean disabled and custom arguments.
Arguments:
(Name, Value, Checked, Disabled, Custom)
|
|
DropDown
|
Returns a HTML dropdown with the specified string name, string currentvalue, integer size,string options. string values. boolean disabled and string custom arguments.
Arguments:
(Name, CurrentValue, Size, Options, Values, Disabled, Custom)
|
|
FileField
|
Returns a HTML file field with the specified string name, integer size, boolean disabled and string custom arguments.
Arguments:
(Name, Size, Disabled, Custom)
|
|
HiddenField
|
Returns a HTML hidden field.
Arguments:
(Name, Value)
(Name, Value, Custom)
|
|
PasswordBox
|
Returns a HTML password box with the specified string name, string value, integer max length, boolean disabled and string custom arguments.
Arguments:
(Name, Value, Size, MaxLength, Disabled, Custom)
|
|
RadioButton
|
Returns a HTML radio box with the specified string name, string value, boolean checked, boolean disabled and string custom arguments.
Arguments:
(Name, Value, Checked, Disabled, Custom)
|
|
ResetButton
|
Returns a HTML reset button with the specified string name, string value, boolean disabled and string custom arguments.
Arguments:
(Name, Value, Disabled, Custom)
|
|
SubmitButton
|
Returns a HTML submit button with the specified string name, string value, boolean disabled and string custom arguments.
Arguments:
(Name, Value, Disabled, Custom)
|
|
TextArea
|
Returns a HTML text area with the specified string name, string value, integer numcols, integer numrows, boolean disabled and string gcustom arguments.
Arguments:
(Name, Value, NumCols, NumRows, Disabled, Custom)
|
|
TextBox
|
Returns a HTML text box with the specified string name, string value, integer size, integer max length, boolean disabled and string custom arguments.
Arguments:
(Name, Value, Size, MaxLength, Disabled, Custom)
|
|