5

I'm building an ASP.NET MVC 2 site, where I want to have users verify their email address after they register.

I want to send an email to the address with a link that the user can click to verify their email, and then handle the clicking of that link (the link will contain a specific id, of course).

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

Maxim Zaslavsky
  • 17,787
  • 30
  • 107
  • 173
  • Similar question asked here: http://stackoverflow.com/questions/424154/asp-net-membership-provider-with-confirmation-email – Jim Lamb Jun 29 '10 at 19:07

2 Answers2

1

as already described in the comment from jim Lamb, their is no built in functionality in the memberShip provider. In 1 of my previous jobs, I followed the example given by the guys from Rolla - Examining ASP.NET's Membership, Roles, and Profile .

Michel Tol
  • 1,102
  • 1
  • 8
  • 15
0

I was looking for the same thing and came across this: http://theintegrity.co.uk/2010/11/asp-net-mvc-2-custom-membership-provider-tutorial-part-1/

Par6
  • 389
  • 1
  • 10
  • 20