Click here to Skip to main content
15,905,776 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to check if an email address exists without sending an email? Pin
ansriharsha12-May-10 21:02
ansriharsha12-May-10 21:02 
AnswerRe: How to check if an email address exists without sending an email? Pin
Michel Godfroid12-May-10 21:23
Michel Godfroid12-May-10 21:23 
AnswerRe: How to check if an email address exists without sending an email? Pin
JHizzle12-May-10 22:45
JHizzle12-May-10 22:45 
GeneralRe: How to check if an email address exists without sending an email? Pin
ansriharsha12-May-10 23:44
ansriharsha12-May-10 23:44 
GeneralRe: How to check if an email address exists without sending an email? Pin
JHizzle13-May-10 0:48
JHizzle13-May-10 0:48 
GeneralRe: How to check if an email address exists without sending an email? Pin
The Man from U.N.C.L.E.13-May-10 3:44
The Man from U.N.C.L.E.13-May-10 3:44 
GeneralRe: How to check if an email address exists without sending an email? Pin
JHizzle13-May-10 3:49
JHizzle13-May-10 3:49 
AnswerRe: How to check if an email address exists without sending an email? Pin
suwangsoft14-May-10 1:36
suwangsoft14-May-10 1:36 
public static bool IsEmail(string Str)<br />
{<br />
    bool v = false;<br />
    if (Str != null && Str.Trim() != "")<br />
    {<br />
        Match m = Regex.Match(Str, @"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*");<br />
        if (m.Success)<br />
        {<br />
            if (Str == m.Value)<br />
            {<br />
                v = true;<br />
            }<br />
        }<br />
    }<br />
    return v;<br />
}

QuestionEnterprise Library logger Pin
A M SOMAN12-May-10 20:52
A M SOMAN12-May-10 20:52 
AnswerRe: error with Enterprise Library logger Pin
Ankur\m/12-May-10 21:01
professionalAnkur\m/12-May-10 21:01 
AnswerRe: Enterprise Library logger Pin
A M SOMAN13-May-10 1:55
A M SOMAN13-May-10 1:55 
QuestionInvalid attempt to call Read when reader is closed Pin
indian2212-May-10 19:48
indian2212-May-10 19:48 
AnswerRe: Invalid attempt to call Read when reader is closed Pin
Arun Jacob12-May-10 20:35
Arun Jacob12-May-10 20:35 
Questionhow to fetch the url of image and store in database Pin
developerit12-May-10 18:55
developerit12-May-10 18:55 
AnswerRe: how to fetch the url of image and store in database Pin
saini arun12-May-10 21:38
saini arun12-May-10 21:38 
GeneralRe: how to fetch the url of image and store in database Pin
developerit12-May-10 22:15
developerit12-May-10 22:15 
GeneralRe: how to fetch the url of image and store in database Pin
saini arun12-May-10 22:34
saini arun12-May-10 22:34 
GeneralRe: how to fetch the url of image and store in database Pin
developerit13-May-10 0:58
developerit13-May-10 0:58 
Questioncache question on a webservice Pin
soorma12-May-10 11:43
soorma12-May-10 11:43 
QuestionDisplay problem Pin
Dhyanga12-May-10 6:49
Dhyanga12-May-10 6:49 
AnswerRe: Display problem Pin
Not Active12-May-10 7:25
mentorNot Active12-May-10 7:25 
GeneralRe: Display problem Pin
Dhyanga12-May-10 8:50
Dhyanga12-May-10 8:50 
GeneralRe: Display problem Pin
Not Active12-May-10 9:36
mentorNot Active12-May-10 9:36 
GeneralRe: Display problem Pin
Dhyanga12-May-10 10:01
Dhyanga12-May-10 10:01 
GeneralRe: Display problem Pin
Not Active12-May-10 10:17
mentorNot Active12-May-10 10:17 

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.