tags:

views:

40

answers:

1

I need to have a login area with the ability to add users to groups in my project.

The built in membership account that come with MVC is just what I need, although I've seen on blogs that some people warn against using the built in system and that you should delete it.

I'm new to mvc and .net so the likely hood of me writing something from scratch thats better is un likely at this stage.

Have other people used the built in system or are there any better alternative i should be looking at?

Thanks for any advice.

Jemes

A: 

It'll work out of the box for simple cases - it's built directly on the ASP.NET 2.0 Membership (read all about it here) and has the same limitations. There's an open source project called ASP.Net Membership which adds some actions/views for the administration bits.

James Kolpack