Amr Badawy
Amr Badawy

Reputation: 7673

What's the best practice or design pattern for user registration?

We have a big portal that needs user registration to allow them use its services. It's already done in .NET and SOL Server 2005. We are in the phase now of discovering all the problems of the current registration system to build a new robust and flexible one that can be extended easily and can be more usable for all services.

What are some best practices and design patterns to rebuild this using good architectural practices?

Upvotes: 1

Views: 1236

Answers (3)

David Perlman
David Perlman

Reputation: 1470

I would recommend Rhino.Secuirty http://weblogs.asp.net/arturtrosin/archive/2009/04/02/rhino-tools-rhino-security-guide.aspx.

It takes a while to get used to but once you're there you'll see its beauty.

I guess open ended questions receive open ended answers :).

Upvotes: 0

user279521
user279521

Reputation: 4807

you can start with the built-in membership component. You can modify that if you need to by modifying the source code.

Upvotes: 0

tster
tster

Reputation: 18237

This question is really too open ended to give a good answer to. However, I would recommend using the built-in Membership stuff: http://msdn.microsoft.com/en-us/library/tw292whz%28v=VS.100%29.aspx

Upvotes: 3

Related Questions