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!
I would use my own:
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.