email verification
hai,i want to develop a page in order to send the email verification code and after clicking the verification link the account going into activated state.......can any one help on this topic
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Posted Oct 18, 2013, 1:04 AM
you can use Regular expression for validation email id or using code behind , visit my link below i have written an article upon regular expression for validate user input or try below code.
bool IsValidEmail(string email) { try { var mail = new System.Net.Mail.MailAddress(email); return true; } catch { return false; } }
hope above code will help your
Jignesh TrivediPosted Oct 18, 2013, 12:38 AM
hi,
Please refer below link it might help you
http://csharpdotnetfreak.blogspot.com/2011/12/createuserwizard-email-verification.html
http://usingaspdotnet.blogspot.in/2011/07/sending-reset-password-link-for-one.html
Naredla NitheshPosted Oct 17, 2013, 9:01 AM
Veena RaviPosted Oct 17, 2013, 3:11 AM
may i know the project is web application or windows application......
and if it is web application means refer this link
http://stackoverflow.com/questions/8080333/sending-email-with-verification-link-while-user-subscribed-to-a-site