我有一个C#ASP.NET Web应用程序,我正在尝试使用数据库表中的列填充ASP:DropDownList。
我的代码:
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Web.Configuration;
namespace CRM2Sage
{
public partial class SOPOrderEntry : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Fill1();
}
public void Fill1()
{
SqlCommand cmd = new SqlCommand("SELECT * FROM Products", new SqlConnection(WebConfigurationManager.AppSettings["CRM2Sage"]));
//cmd.Connection.Open();
cmd.Connection.Open();
SqlDataReader ddlValues;
ddlValues = cmd.ExecuteReader();
vproduct.DataSource = ddlValues;
vproduct.DataValueField = "theName";
vproduct.DataTextField = "theName";
vproduct.DataBind();
cmd.Connection.Close();
cmd.Connection.Dispose();
}
}
}
当我运行页面时,我收到以下错误
ConnectionString属性具有 尚未初始化。
指向cmd.Connection.Open();
我无法理解为什么,SQL连接存储在我的web.config文件中。
web.config
<?xml version="1.0"?>
<configuration>
<appSettings />
<connectionStrings>
<add name="CRM2Sage" connectionString="Data Source=W2003CRMDEMO; Initial Catalog=CRM2Sage; User ID=newSA; Password=password;" providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="true">
</compilation>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Windows" />
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
</system.web>
</configuration>
有人可以帮忙吗?
干杯
贾斯汀
答案 0 :(得分:6)
您需要检索.ConnectionString
属性:
string connectionString = WebConfigurationManager.ConnectionStrings["CRM2Sage"].ConnectionString;
using(SqlConnection _con = new SqlConnection(connectionString))
using(SqlCommand cmd = new SqlCommand("SELECT * FROM Products", _con))
{
// do your stuff here
}
您现在正在做的只是在<connectionStrings>
下检索名称为CRM2Sage
的整个条目。
答案 1 :(得分:3)
问题是,您正在访问AppSettings
,但是您想要访问连接字符串:
new SqlConnection(WebConfigurationManager.ConnectionStrings.ConnectionStrings["CRM2Sage"].ConnectionString)
答案 2 :(得分:0)
你可以使用
System.Web.Configuration.WebConfigurationManager.ConnectionStrings["CRM2Sage"].ConnectionString;
Or
System.Configuration.ConfigurationManager.ConnectionStrings["CRM2Sage"].ConnectionString;
在asp.net中。但不是
WebConfigurationManager.AppSettings["CRM2Sage"]