未从webconfig文件

时间:2016-12-18 13:46:31

标签: asp.net sqlconnection

以下代码是aspx.cs文件中的页面加载事件。当我在chrome中加载页面时,它会在cs文件中引发一些错误。

堆栈跟踪错误:连接到sql server时出现与网络相关的错误:

protected void Page_Load(object sender, EventArgs e)
    {
        string constr = ConfigurationManager.ConnectionStrings["constr"].ConnectionString;
        using (SqlConnection con = new SqlConnection(constr))
        {
            using (SqlCommand cmd = new SqlCommand("SELECT * FROM employee"))
            {
                using (SqlDataAdapter sda = new SqlDataAdapter())
                {
                    cmd.Connection = con;
                    sda.SelectCommand = cmd;
                    using (DataTable dt = new DataTable())
                    {
                        sda.Fill(dt);
                        listviewmain.DataBind();
                    }
                }
            }
        }

web.config文件中的连接字符串:

<add name="constr"
             connectionString = "data source=.;initial catalog=[Analyst_RealEstate_WebCP];persist security info=True;user id=sa;password=pass@word1;multipleactiveresultsets=True;"
             providerName="System.Data.SqlClient"/>

Sql Connection:

Sql Connection image

当我尝试使用这些凭据在sql中进行连接时,我可以登录但不能通过web.config文件

0 个答案:

没有答案