接続文字列をキーとして与えたい。だから私はこのコードをweb.configに書きます。
<add key="connectstring" value="Data Source=USER-PC;Initial Catalog=DBName; Integrated Security=False; providerName=System.Data.SqlClient"/>
</appSettings>
しかし、エラーがあり、それは言う
Keyword not supported: 'providername'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentException: Keyword not supported: 'providername'.
Source Error:
Line 28: SqlConnection conn;
Line 29: conn = new SqlConnection(ConfigurationManager.AppSettings["connectstring"].ToString());
Line 30:
Line 31:
どうすれば解決できますか??