在连接字符串中需要帮助

时间:2015-08-02 14:10:34

标签: c# asp.net web-config connection

<connectionStrings>
  <add name="mycollegeproject" connectionString="Data Source=mssql2.gear.host;Initial Catalog=mycollegeproject;Persist Security Info=True;User ID=mycollegeproject;Password=*******" />
</connectionStrings>

public static string strcon = ConfigurationManager.ConnectionStrings["mycollegeproject"].ConnectionString;

错误

System.NullReferenceException: Object reference not set to an instance of an object.

1 个答案:

答案 0 :(得分:0)

如果没有错,大多数情况下,您的App.config名为mycollegeproject(或者)的mycollegeproject中没有定义连接字符串,而是在代码中使用不同的密钥名称,而不是使用NULL等等下面的代码行返回ConfigurationManager.ConnectionStrings["mycollegeproject"] ,导致NRE。

{{1}}