I have mysql database and i want to connect for login purpose in asp.net application. I have ADO.Net driver for MySQL install with version 6.6.5.0
what setting should i use in web.config for membership provider, roleprovider and profiler ?
I also want to use
if (FormsAuthentication.Authenticate(txtUserName.Text, txtPassword.Text))
{
FormsAuthentication.RedirectFromLoginPage(txtUserName.Text, true);
}
for login purpose.
what database structure i want to maintain for users and roles table (whether to maintain same as we use in sql server database)?