Simple question - is there any tutorials how to implement registration and login on asp.net mvc3 webpage using mssql database? And how to check user authorization (is logged or not and his privileges)?
Greetings
Simple question - is there any tutorials how to implement registration and login on asp.net mvc3 webpage using mssql database? And how to check user authorization (is logged or not and his privileges)?
Greetings
You shouldn't need to do that much as the heavy lifting is done by the membership provider - that is to say that all the controls and code as such are DB agnostic and don't really care which data storage mechanism you use. All you should need is to install MySQL Connector and change the configuration settings in Web.Config to point to the MySQL provider rather than the out of the box MSSQL provider - you should find what you need here: