Can you plz help me fix out the issue in using mysql database for membership in asp.net2.0.
I have changed my machine.config file by adding autogenerateschema="true"
added
<connectionStrings>
<remove name="LocalMySqlServer"/>
<add name="LocalMySqlServer"
connectionString="Datasource=localhost;user id=root; password=root; persist security info=True;database=dbname"
providerName="MySql.Data.MySqlClient"/>
</connectionStrings>
and
<roleManager defaultProvider="MySQLRoleProvider" />
<membership defaultProvider="MySQLMembershipProvider" />
in web.config file
I dont see auto generated tables in mysql database
and it gives
Could not establish a connection to the database.
If you ha ...
Go to the complete details ...