I'm creating a website in ASP.net and using a MySQL database. What would you guys suggest I do?

  • Build my own login system with SQL Injection check
  • Built in login control using a compliant membership provider

What are possible pro/cons of both?

Thank you very much!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I would use my own:

  • Create an User class with a database table for it (better use an ORM like EntityFramework to do all the dirty work)
  • Make a UserService class for registration, authentication, password hashing and other logic.

I've used the built-in asp.net user/roles management for one project. There is nothing wrong with it. But if you need more control over code and flexibility - consider writing your own, it will be easy.

link|improve this answer
thanks! I would prefer writing my own login too. It's hard to find a comparisson or preferences of programmers online though =/ – Tom Apr 11 '11 at 8:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.