Hello,
How to add email verification process to a vb.net existing program.
Part of program validates a new user by sending them an email, having them confirm it, and the system verifying their response doesn't work . Need guideline on how to proceed with this.
how are you confirming their email?
the usual process is to generate a number, send it by mail as plain text or forged into a link, and store it in your DB, then the user goes to your site enters the code and you check if that code corresponds to the email you generated it for.
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
the usual process is to generate a number, send it by mail as plain text or forged into a link, and store it in your DB, then the user goes to your site enters the code and you check if that code corresponds to the email you generated it for.