ASP.NET MVC and ASP.NET Membership: Implementing Email Verification After User Registration

I am creating an ASP.NET MVC 2 site where I want users to verify their email address after registration.

I want to send an email to an address with a link that the user can click to confirm their email, and then process a click on that link (the link will contain a specific identifier, of course).

Of course, this is easy to implement manually , but is there something already built into ASP.NET that has such a function?

+5
source share
2 answers

as already described in a comment from jim Lamb, their function is not built into the memberShip provider. In one of my previous works, I followed an example presented by the guys from Rolla - Exploring ASP.NET Membership, Roles and Profile .

+1
source

All Articles