Click here to Skip to main content
15,889,992 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Google Pin
J4amieC29-Aug-08 2:15
J4amieC29-Aug-08 2:15 
AnswerRe: Google Pin
Abhishek Sur29-Aug-08 1:14
professionalAbhishek Sur29-Aug-08 1:14 
GeneralRe: Google Pin
Icarus12329-Aug-08 1:19
Icarus12329-Aug-08 1:19 
GeneralRe: Google Pin
Abhishek Sur29-Aug-08 2:14
professionalAbhishek Sur29-Aug-08 2:14 
GeneralRe: Google Pin
Icarus12329-Aug-08 2:40
Icarus12329-Aug-08 2:40 
Questionhow to create leader in c#asp.net using xml tag of tally9.0 Pin
Teredesai128-Aug-08 23:15
Teredesai128-Aug-08 23:15 
QuestionAsp.net Email validation source code Pin
2084mni28-Aug-08 22:12
2084mni28-Aug-08 22:12 
AnswerRe: Asp.net Email validation source code Pin
Krazy Programmer28-Aug-08 22:37
Krazy Programmer28-Aug-08 22:37 
This checks the Email id Format

function echeck(str) {

var at="@"
var dot="."
var lat=str.indexOf(at)
var lstr=str.length
var ldot=str.indexOf(dot)
if (str.indexOf(at)==-1){
return "Invalid E-mail ID"

}

if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
return "Invalid E-mail ID"
}

if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
return "Invalid E-mail ID"
}

if (str.indexOf(at,(lat+1))!=-1){
return "Invalid E-mail ID"
}

if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
return "Invalid E-mail ID"
}

if (str.indexOf(dot,(lat+2))==-1){
return "Invalid E-mail ID"
}

if (str.indexOf(" ")!=-1){
return "Invalid E-mail ID"
}

return "";
}

and to check the existence of mail .. send a mail . keep try catch block .. i am not sure whether it will solve ur problem but syntax validation can be done by the above one

If You win You need not Explain............
But If You Loose You Should not be there to Explain......

GeneralRe: Asp.net Email validation source code Pin
Manas Bhardwaj28-Aug-08 22:48
professionalManas Bhardwaj28-Aug-08 22:48 
GeneralRe: Asp.net Email validation source code Pin
Learning IT28-Aug-08 23:44
Learning IT28-Aug-08 23:44 
GeneralRe: Asp.net Email validation source code Pin
Learning IT28-Aug-08 23:46
Learning IT28-Aug-08 23:46 
AnswerRe: Asp.net Email validation source code Pin
Manas Bhardwaj28-Aug-08 22:48
professionalManas Bhardwaj28-Aug-08 22:48 
GeneralRe: Asp.net Email validation source code Pin
Learning IT28-Aug-08 23:42
Learning IT28-Aug-08 23:42 
GeneralRe: Asp.net Email validation source code Pin
Manas Bhardwaj28-Aug-08 23:59
professionalManas Bhardwaj28-Aug-08 23:59 
GeneralRe: Asp.net Email validation source code Pin
Learning IT29-Aug-08 0:11
Learning IT29-Aug-08 0:11 
Questionnot getting object of usercontrol class file in app_code class file... Pin
Hemant_ec4828-Aug-08 21:28
Hemant_ec4828-Aug-08 21:28 
QuestionMdb file is opened or not Pin
BalasubramanianK28-Aug-08 20:41
BalasubramanianK28-Aug-08 20:41 
AnswerRe: Mdb file is opened or not Pin
Sathesh Sakthivel28-Aug-08 20:46
Sathesh Sakthivel28-Aug-08 20:46 
GeneralRe: Mdb file is opened or not Pin
BalasubramanianK28-Aug-08 20:55
BalasubramanianK28-Aug-08 20:55 
GeneralRe: Mdb file is opened or not Pin
Sathesh Sakthivel28-Aug-08 20:58
Sathesh Sakthivel28-Aug-08 20:58 
GeneralRe: Mdb file is opened or not Pin
BalasubramanianK28-Aug-08 21:31
BalasubramanianK28-Aug-08 21:31 
AnswerRe: Mdb file is opened or not Pin
Abhijit Jana28-Aug-08 20:52
professionalAbhijit Jana28-Aug-08 20:52 
GeneralRe: Mdb file is opened or not Pin
BalasubramanianK28-Aug-08 21:17
BalasubramanianK28-Aug-08 21:17 
AnswerRe: Mdb file is opened or not Pin
Abhijit Jana28-Aug-08 21:30
professionalAbhijit Jana28-Aug-08 21:30 
GeneralRe: Mdb file is opened or not Pin
BalasubramanianK28-Aug-08 21:38
BalasubramanianK28-Aug-08 21:38 

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.