.NET Tutorials, Forums, Interview Questions And Answers
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!


Top 5 Contributors of the Month
G N
Akhil Raj
Dhananjay Kumar
laptop charles
Majith

Home >> Code Snippets >> Javascript >> Post New Resource Bookmark and Share

 Subscribe to Code Snippets

JavaScript Email Validation Using -Regular Expression

Posted By :BangaruBabuPureti      Posted Date :30/06/2010   Points :10   Category: Javascript    URL: http://bangarubabupureti.spaces.live.com/

Java script validation for validating email address using Regular expression
 




if(document.getElementById("<%=txtEmailid.ClientID %>").value=="")
                 {
                    alert("Please Enter Email-Id");
                    document.getElementById("<%=txtEmailid.ClientID %>").focus();
                    return false;
                 }
                 var emailPat = /^[a-zA-Z][\w\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]\.[a-zA-Z][a-zA-Z\.]*[a-zA-Z]$/;
                 var emailid=document.getElementById("<%=txtEmailid.ClientID %>").value;
                 var matchArray = emailid.match(emailPat);
                 if (matchArray == null)
                {
                    alert("Please Enter valid Email-Id.");
                    document.getElementById("<%=txtEmailid.ClientID %>").focus();
                    return false;
                } 



Featured Articles


Design Pattern Interview Questions Part (3)
Software Architecture Interview Questions Part 3 State Pattern, Stratergy pattern,Visitor pattern, Adapter and fly weight ... Read More
Software Architecture Interview Questions Part 4- Design Patterns
(A) Can you explain bridge pattern? (A) Can you explain composite pattern? (I) Can you explain decorator pattern ? (A) Can you explain Façade pattern? (A) Can you explain chain of responsibility ( COR)? (I) Can you explain proxy pattern? (B) Can you explain template pattern? ... Read More
UML Interview Question Part 1
(B) Define UML? (I) Can you explain use case diagrams? (I) Can you explain primary and secondary actors? (I) How does a simple use case look like? (I) Can you explain 'Extend' and 'Include' in use cases? (I) Can you explain class diagrams? (B) How do we represent private, public and protected in class diagrams? (I) what does associations in a class diagram mean? (I) Can you explain aggregation and composition in class diagrams? (A) What are composite structure diagram and reflexive association in class diagrams? ... Read More
Responses

No response found. Be the first to respond this post

Post Comment
You must Sign In To post reply
Find More code samples in C#, ASP.Net, Vb.Net and more Here

Hall of Fame    Twitter   Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend