Click here to Skip to main content
15,887,027 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionVerify Live Email Address exists or not Pin
shaileshgurav19-Oct-15 1:38
shaileshgurav19-Oct-15 1:38 
AnswerRe: Verify Live Email Address exists or not Pin
Debojyoti Saha19-Oct-15 2:02
professionalDebojyoti Saha19-Oct-15 2:02 
QuestionRe: Verify Live Email Address exists or not Pin
Richard MacCutchan19-Oct-15 2:26
mveRichard MacCutchan19-Oct-15 2:26 
AnswerRe: Verify Live Email Address exists or not Pin
Richard Deeming19-Oct-15 6:52
mveRichard Deeming19-Oct-15 6:52 
GeneralRe: Verify Live Email Address exists or not Pin
Kornfeld Eliyahu Peter19-Oct-15 21:50
professionalKornfeld Eliyahu Peter19-Oct-15 21:50 
GeneralRe: Verify Live Email Address exists or not Pin
Richard Deeming20-Oct-15 2:26
mveRichard Deeming20-Oct-15 2:26 
AnswerRe: Verify Live Email Address exists or not Pin
Eddy Vluggen20-Oct-15 1:09
professionalEddy Vluggen20-Oct-15 1:09 
AnswerRe: Verify Live Email Address exists or not Pin
lokerjobindo23-Oct-15 15:34
lokerjobindo23-Oct-15 15:34 
Checking email addresses for validity is a tricky process. EmailValidator.Net has made this process incredibly simple and powerful.
The only correct way to verify an email address exists is to send a mailbox an email and see if you receive a bounce back email or NDR (Non-Deliverable Receipt). EmailValidator.Net validate email addresses WITHOUT sending an actual email.ss

C# code sample :
protected void LinkButton1_Click(object sender, System.EventArgs e) {
// We create our Mail Validator Object
Codicode.Emailvalidator Ev = new Codicode.Emailvalidator();
// Sender email (for smtp identification)
Ev.Mail_From = "admin@monoprog.com";
// Sender email (for smtp identification)
bool Valid_Email = Ev.Check_Mailbox(Textbox1.Text);
}

protected void LinkButton2_Click(object sender, System.EventArgs e) {
// We create our Mail Validator Object
Codicode.Emailvalidator Ev = new Codicode.Emailvalidator();
// Sender email (for smtp identification)
string[] Mx_Records = Ev.FindMXRecords(Textbox1.Text);
}



thanks
sign
Lowongan Kerja S1

modified 23-Oct-15 22:58pm.

AnswerRe: Verify Live Email Address exists or not Pin
Daniel Miller23-Oct-15 15:53
professionalDaniel Miller23-Oct-15 15:53 
Questionport forwarding on mobile Pin
Member 1191972218-Oct-15 19:31
Member 1191972218-Oct-15 19:31 
AnswerRe: port forwarding on mobile Pin
Debojyoti Saha19-Oct-15 1:22
professionalDebojyoti Saha19-Oct-15 1:22 
GeneralRe: port forwarding on mobile Pin
Member 1191972219-Oct-15 1:44
Member 1191972219-Oct-15 1:44 
GeneralRe: port forwarding on mobile Pin
Debojyoti Saha19-Oct-15 1:55
professionalDebojyoti Saha19-Oct-15 1:55 
GeneralRe: port forwarding on mobile Pin
Member 1191972219-Oct-15 2:13
Member 1191972219-Oct-15 2:13 
GeneralRe: port forwarding on mobile Pin
Debojyoti Saha19-Oct-15 2:55
professionalDebojyoti Saha19-Oct-15 2:55 
GeneralRe: port forwarding on mobile Pin
Member 1191972219-Oct-15 19:53
Member 1191972219-Oct-15 19:53 
GeneralRe: port forwarding on mobile Pin
Member 1191972219-Oct-15 20:30
Member 1191972219-Oct-15 20:30 
Questionangular js and asp.net mvc Pin
Arjun Mourya15-Oct-15 20:31
Arjun Mourya15-Oct-15 20:31 
QuestionIs there any way to avoid writing store procedure for 30 columns. Pin
Praveen Kandari15-Oct-15 1:40
Praveen Kandari15-Oct-15 1:40 
AnswerRe: Is there any way to avoid writing store procedure for 30 columns. Pin
ZurdoDev15-Oct-15 2:12
professionalZurdoDev15-Oct-15 2:12 
GeneralRe: Is there any way to avoid writing store procedure for 30 columns. Pin
Praveen Kandari15-Oct-15 2:19
Praveen Kandari15-Oct-15 2:19 
QuestionMake uploading of file optional?? Pin
samflex13-Oct-15 9:56
samflex13-Oct-15 9:56 
QuestionRe: Make uploading of file optional?? Pin
Richard MacCutchan13-Oct-15 9:59
mveRichard MacCutchan13-Oct-15 9:59 
AnswerRe: Make uploading of file optional?? Pin
samflex13-Oct-15 10:31
samflex13-Oct-15 10:31 
AnswerRe: Make uploading of file optional?? Pin
F-ES Sitecore13-Oct-15 23:28
professionalF-ES Sitecore13-Oct-15 23:28 

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.