private void Button1_Click(object sender, System.EventArgs e)
{
string strconn=ConfigurationSettings.AppSettings["ConnectionString"];
cn=new SqlConnection(strconn);
if(DropDownList1.SelectedIndex==0)
{
BindGrid1();
}
else if(DropDownList1.SelectedIndex==1)
{
BindGrid2();
}
}
这些代码有错吗?BindGrid1();BindGrid2();函数已经证实没有错
出错的提示为:
从索引 0 处开始,初始化字符串的格式不符合规范。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.ArgumentException: 从索引 0 处开始,初始化字符串的格式不符合规范。
源错误:
行 135:
行 136: string strconn=ConfigurationSettings.AppSettings["ConnectionString"];
行 137: cn=new SqlConnection(strconn);
行 138:
行 139:
源文件: d:\projects\lcerp\webclient\storage\productinstock.aspx.cs 行: 137
请帮我分析一下