Below is a description of what gets generated. Each one will generate a label with a CssClass="labelForm" and TextBox with a CssClass="textBoxForm"
If you mark Is Required it will generate an appropriate asp:RequiredFieldValidator for the control and a red * for the label.
|
| TextBox |
textbox control with a width of 150 |
| MultiLineTextBox |
textbox control with a width of 300, height of 150 and TextMode="MultiLine" |
| EmailAddress |
textbox control with a width of 150 and regular expression for email address |
| Password |
textbox control with a width of 150 and TextMode="Password" |
| DateField |
textbox control with a width of 150 and regular expression for U.S. Date using ^([1-9]|0[1-9]|1[012])[- /.]([1-9]|0[1-9]|[12][0-9]|3[01])[- /.][0-9]{4}$ |
| PhoneNumber |
textbox control with a width of 150 and regular expression for U.S. Phone Number |
| SSN |
textbox control with a width of 150 and regular expression for Social Security Number |
| ZipCode |
textbox control with a width of 150 and regular expression for U.S. Postal Zip Code |
| DropDownList |
markup for DropDownList with NO list items |