Email Validation by Javascript

function EmailCheck()
{
var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
var str =document.getElementById('<%= TxtTo.ClientID %>').value;

if(reg.test(str) == false)
{
alert('Invalid Email Address');
document.getElementById('<%= TxtTo.ClientID %>').focus();
}
}

Comments

Popular posts from this blog

MVC Request Execution Stages - Life Cycle

Page Life Cycle in ASP.NET

Auto Refresh .aspx page - ASP.NET

SQL Server 2005 with XML Parameters

Parsing the comma separated values into a temporary table

Polymorphism in C#

Overview of MVC

How to Edit More than 200 Rows in SQL Server 2008

Differences between a Structure and Class