Input and Data Validation
Garbage in, garbage out. You can avoid data cleanup tasks on the backend by avoiding bad data coming in. ASP.NET validation controls and third party validation controls help you receive the right data in the right format. In addition, the AJAX Control Toolkit employs extenders that can prevent invalid data from being entered in the first place. For instance, the FilteredTextBoxExtender can prevent unwanted characters from being entered into the textbox. The MaskedEditExtender restricts the format of the input being entered.
Whitepapers
How To
Controls
Resources
Podcasts
Video
Revision number 8, Thursday, July 10, 2008 5:43:02 PM by bmains
You must Login to comment.
Revision #5
Thu, Jul 17, 2008 1:11 PM
by
|
Validation Controls
ASP.NET Validation Controls are powerful server controlsthat areused for validating user input. These controls provides both server side and client side validation. The client side validation featurescan be used to give your users an improved UI experience
|
Revision #4
Wed, Jul 9, 2008 7:05 AM
by
|
RangeValidator
The RangeValidator control tests whether an input value falls within a given range. RangeValidator uses three key properties to perform its validation: ControlToValidate contains the value to validate, MinimumValue defines the minimum value of the valid range
|
Revision #7
Thu, Jul 5, 2012 2:31 PM
by
|
ASP.NET MVC Best Practices
The ASP.NET MVC is becoming more and more popular each day. As the application grows in size so does the maintenance nightmare. Following are some of the better practices, that if followed, may help maintain our application and also provides a means of scalability
|