Click here to Skip to main content
15,919,613 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Will a website hosted in the webserver affect other sites hosted in the same server? Pin
Manas Bhardwaj27-May-09 23:57
professionalManas Bhardwaj27-May-09 23:57 
AnswerRe: Will a website hosted in the webserver affect other sites hosted in the same server? Pin
Baran M28-May-09 0:07
Baran M28-May-09 0:07 
AnswerRe: Will a website hosted in the webserver affect other sites hosted in the same server? Pin
saanj28-May-09 2:34
saanj28-May-09 2:34 
AnswerRe: Will a website hosted in the webserver affect other sites hosted in the same server? Pin
farogh haider28-May-09 20:47
farogh haider28-May-09 20:47 
QuestionHow to check that the provided e-mailid is valid or not? Pin
Subin Alex27-May-09 23:40
Subin Alex27-May-09 23:40 
AnswerRe: How to check that the provided e-mailid is valid or not? Pin
binarymax27-May-09 23:52
binarymax27-May-09 23:52 
AnswerRe: How to check that the provided e-mailid is valid or not? Pin
Baran M27-May-09 23:54
Baran M27-May-09 23:54 
AnswerRe: How to check that the provided e-mailid is valid or not? Pin
padmanabhan N28-May-09 0:00
padmanabhan N28-May-09 0:00 
//java script
function isValidEmailID(emailid)
{
var regex = new RegExp("\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*");
var matches = regex.exec(emailid);
return (matches != null && emailid == matches[0]);
}

//aspx.cs
email = txtEmail.Text.Trim();
if (!IsValidEmail(email))
{
custVal.ErrorMessage = "Valid EmailID : Must be Entered";
custVal.IsValid = false;
return;
}

Padmanabhan

AnswerRe: How to check that the provided e-mailid is valid or not? Pin
Christian Graus28-May-09 0:06
protectorChristian Graus28-May-09 0:06 
AnswerRe: How to check that the provided e-mailid is valid or not? Pin
Jörgen Andersson28-May-09 1:39
professionalJörgen Andersson28-May-09 1:39 
AnswerRe: How to check that the provided e-mailid is valid or not? Pin
farogh haider28-May-09 20:50
farogh haider28-May-09 20:50 
QuestionCollapsable panel Extender Pin
Danish Kharadi27-May-09 22:43
Danish Kharadi27-May-09 22:43 
AnswerRe: Collapsable panel Extender Pin
saanj28-May-09 2:35
saanj28-May-09 2:35 
Questiondisable repair option in .net wensetup Pin
pradeep kumarappagari27-May-09 22:39
pradeep kumarappagari27-May-09 22:39 
AnswerRe: disable repair option in .net wensetup Pin
Christian Graus28-May-09 0:07
protectorChristian Graus28-May-09 0:07 
QuestionPOST - Attach a CSV file by web service Pin
bloodyrouk27-May-09 22:28
bloodyrouk27-May-09 22:28 
AnswerRe: POST - Attach a CSV file by web service Pin
Christian Graus28-May-09 0:08
protectorChristian Graus28-May-09 0:08 
GeneralRe: POST - Attach a CSV file by web service Pin
bloodyrouk28-May-09 1:11
bloodyrouk28-May-09 1:11 
QuestionHelp regarding online examination project Pin
Sneeha27-May-09 22:11
Sneeha27-May-09 22:11 
AnswerRe: Help regarding online examination project Pin
Baran M27-May-09 22:48
Baran M27-May-09 22:48 
GeneralRe: Help regarding online examination project Pin
Sneeha29-May-09 6:21
Sneeha29-May-09 6:21 
GeneralRe: Help regarding online examination project Pin
Baran M29-May-09 20:45
Baran M29-May-09 20:45 
GeneralRe: Help regarding online examination project Pin
Sneeha31-May-09 16:41
Sneeha31-May-09 16:41 
AnswerRe: Help regarding online examination project Pin
RAKESH gaur mkcl7-Jun-09 19:23
RAKESH gaur mkcl7-Jun-09 19:23 
AnswerRe: Help regarding online examination project Pin
RAKESH gaur mkcl10-Jun-09 1:36
RAKESH gaur mkcl10-Jun-09 1:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.