Data Validation for .NET

by cooljeba

Update: 22-03-2010

Live preview added: http://www.iup.in/validator/Default.aspx

Precaution is better than Cure

Data validation acts as the first step of defense against the bugs. To maintain a solution it is important to have validations to prevent the invalid data creeping into the database.

This class consists of the commonly used validations which you will find useful in your project. Each line of code is commented in detail for quick understanding of the method.

Implementation is pretty simple. You will just have to pass your input data and check for the boolean.

Instructions for use:

Usage of the methods in class are pretty straight forward

1 ) IsInteger (string value);

if (DataValidator.IsInteger("123")
    {
       //Valid Data
    }
    else
    {
        //Invalid Data
    }

2 ) IsAlpha(string value) ;

if (DataValidator.IsAlpha("data2"))
    {
       //Valid Data
    }
    else
    {
        //Invalid Data
    }

3 ) IsDecimal(string value);

if (DataValidator.IsDecimal("2.234"))
    {
       //Valid Data
    }
    else
    {
        //Invalid Data
    }

4 ) IsIPAddress(string value) ;

if (DataValidator.IsIPAddress("127.0.0.1"))
    {
       //Valid Data
    }
    else
    {
        //Invalid Data
    }

5 ) IsURL(string value);

if (DataValidator.IsURL("http://www.codecanyon.net"))
    {
       //Valid Data
    }
    else
    {
        //Invalid Data
    }

6 ) IsEMailAddress(String value);

if (DataValidator.IsEMailAddress("me(at)example.com"))
    {
       //Valid Data
    }
    else
    {
        //Invalid Data
    }

7 ) IsHexColor(string value);

if (DataValidator.IsHexColor("#FFFFFF"))
    {
       //Valid Data
    }
    else
    {
        //Invalid Data
    }

8 ) IsDate(string value);

if (DataValidator.IsDate("12-Jan-2009"))
    {
       //Valid Data
    }
    else
    {
        //Invalid Data
    }

All the best :)

$6

Prepaid customers
pay just $4 - how? Prepay Your Account With our deposit system not only will purchasing be much faster, but we’ll also take $2 off the price! Find Out More Price

You must sign in or sign up to purchase this item.

Purchase 3 purchases

File Types Included
C# CS
Item Attributes
Created 11 March 10
Compatible .NET versions 2.0, 3.0, 3.5, 4.0
.NET Files Included C# CS
Compatible Browsers Chrome 4, Chrome 5, FireFox 2, FireFox 3, IE6, IE7, IE8, Opera, Safari