


It seemed like it was going to take an eternity to finish, well at least the document. Well, I am finally finished with my hive textbox control. (Enumeration: TextBoxMode) Types of modes - SINGLELINE | MULTILINE | PASSWORD.įor setting a proper name for the textbox control.įor setting the proper name of the compare control.ĭescription - An enumeration of different types of allowed character sets.Īllows developer to specify characters to be used.Īllows all non HTML characters to be used.Īllows all characters except quotes to be used.Īllows all characters except double quotes to be used.Īllows all alpha characters to be used only.Īllows all alpha-numeric characters to be used only.Īllows all numeric characters to be used only.ĭescription - An enumeration of different types of validations.Īllows developer to specify own validation regular expression type.Īllows international phone number validation type.Īllows social security number validation type.ĭescription - An enumeration of different types of compare modes.ĭescription - An enumeration of different types of credit cards.ĭescription - An enumeration of types for setting range properties to that type. (Enumeration: CharsetMode) Types of characters - NONE | USERDEFINED | ALL | NONHTML | NOQUOTES | NODOUBLEQUOTES | ALPHA | ALPHANUMERIC | NUMERICĬheck to see if textbox is required field.įor setting the textbox max character length.įor setting the textbox min character length.įor setting the textbox onSelect property.įor setting the textbox onMouseUp property.įor setting the textbox onMouseOver property.įor setting the textbox onMouseOut property.įor setting the textbox onMouseMove property.įor setting the textbox onMouseDown property.įor setting the textbox onKeyUp property.įor setting the textbox onKeyPress property.įor setting the textbox onKeyDown property.įor setting the textbox onFocus property.įor setting the textbox onDblClick property.įor setting the textbox onClick property.įor setting the textbox onChange property.įor setting the CSS style of the required symbol asterisk.īoolean property for creating tables around textbox and labels.Īdds an asterisk to the end of the textbox.įor setting the label message of the textbox control.įor setting the textbox ReadOnly property.įor setting the text value of the textbox control.įor setting the text mode of the textbox. To test textbox text for bad words and return an error.įor setting the type of characters allowed by the textbox.
#Multi credit card validator password
(Enumeration: ValidationMode) Types of validation - NONE | USERDEFINED | EMAIL | URL | ZIPCODE | PHONE | INTERNATIONALPHONE | DATE | ADVANCEDDATE | UKDATE | IPADDRESS | UKPOSTALCODE | SSN | CREDITCARD | PASSWORD | PERCENTAGE | GUIDįor setting the compare mode type of the textbox.įor setting the range type of the properties MinimumValue and MaximumValue.įor setting the start parameter for range validation.įor setting the end parameter for range validation.įor setting a custom CharsetMode regular expression error message.įor setting a custom CharsetMode regular expression.įor setting the custom regular expression for the user-defined ValidationMode.įor setting the custom error message for a user-defined ValidationMode.Ī credit card type ReadOnly property of CardType enumeration. The error message from the validator validation.įor setting the type of validation to do.
#Multi credit card validator code
Then add the following code to your ASP.NET webpage:Ĭhecks to see if this control is valid and returns it to the page validation. NET DLL assembly and put into your website home ( bin) folder. VB.NET and ASP.NET (For all you C# coders, who get paid more than VB.NET programmers!!! :P~) Version:Ĭompile code into a. Control also has built in range validation, bad word filter, required validator and comparison validator. Control can also run user defined validation types. This control also includes many validation types to choose from: NONE, USERDEFINED, EMAIL, URL, ZIPCODE, PHONE, INTERNATIONALPHONE, DATE, ADVANCEDDATE, UKDATE, IPADDRESS, UKPOSTALCODE, SSN, CREDITCARD, PASSWORD, PERCENTAGE and GUID. You can also specify custom character sets for your control with the chars property. Control can protect against SQL injection attacks and client script attacks with a special character set property. Allows textbox to do self checking and self error response messages. This article demonstrates a control that combines textbox, multi-validation and response labels in one control.
