I need to implement the common ‘New Account’ pattern (in .net MVC) where:
- user information is collected;
- my system sends an email;
- and the user if required to reply to the email to activate the account.
Is there a best practices recognized or sample site that can guide my way?
thx much
EDIT: Note that i’m trying to drill into a deeper pattern here than just comparing a submitted password against a stored password.
Also please note that I’m not attempting any reference to Windows Workflow here. The title uses workflow in a generic sense only.
thx
Implementing a Membership Provider
MSDN Membership Provider
Overriding a method, say the Create User Method
MSDN Membership.CreateUser()
All you need to do is inherit the AspNetMembershipProvider, override the CreateUser method and implement custom code:
I hope this helps. I think WF may be too much for something like this.