This is a simple variation of the TextBox used to represent input[type=password]
Roadmap
Handle setting of Value to DBNull directly, internally casting to String null
Add Type="Password" overload and deprecate the Password control
CKEditor sizing is shaky due to requiring a surrounding div to set the size, need to fix this
so that the user can directly style the width and height from CSS without being forced to use
the Chan defaults
Qualifiers
Type
Name
Default
Description
string
id
""
Unique identifier within the page for the control
string
Class
""
CSS class to assign to the control alongside the internal Chan classes.
string
Text
""
The text value held by the input.
string
Type
"" (single)
One of "single","multi" or "rich" to show as a single-line, multi-line or multi-line rich html textbox, respectively. If NOSCRIPT then "rich" falls back to "multi". If unset then "single" is assumed.
int
MaxLength
0 (none)
Maximum number of characters that may be input, ignored if zero or below
bool
Enabled
true
Wether or not the control is enabled, mapped directly to the HTML Anchor Disabled property.
bool
Mandatory
false
Wether or not Text must hold a value other than String.Empty to Validate the control and it's parent form.
bool
Visible
true
Wether or not the control is rendered into the page's HTML.