I have nothing new to answer this question, but I would like to give some explanation,
System.Data.SqlClient
Custom .NET Framework data provider for SQL Server. In web.config, you must have the value System.Data.SqlClient as the value of the providerName attribute. This is the .NET Framework data provider that you are using.
if you need to connect your application to MYSql, you can use
MySql .Net Connector
It is required, but in your case it is missing, so you get an error message.
You can find out more (here) [http://msdn.microsoft.com/en-US/library/htw9h4z3 (v = VS.80) .aspx] Hope this gives you a better idea of โโwhat kind of error you and you fix it.
<configuration> <connectionStrings> <add name="Northwind" connectionString="Data Source=Data Source=IP_OF_SERVER,PORT; Initial Catalog=DATABASE_NAME; UID=USERNAME; pwd=PASSWORD; Integrated Security=True;" providerName="System.Data.SqlClient" /> </connectionStrings> </configuration>
source share