本文介绍了主机中的连接字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<add name="ConnectionString" connectionString="Data Source=(Local);Initial Catalog=db;User ID=myusername; Password=my password" providerName="System.Data.SqlClient"/>
</connectionStrings>
我在aspx f后面的代码中使用此代码ile
and i am using this code in my code behind of aspx file
SqlConnection con = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
但这个错误...
but this error...
Login failed for user "myusername"
推荐答案
这篇关于主机中的连接字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!