<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.
答案 0 :(得分:0)
如果没有错,大多数情况下,您的App.config
名为mycollegeproject
(或者)的mycollegeproject
中没有定义连接字符串,而是在代码中使用不同的密钥名称,而不是使用NULL
等等下面的代码行返回ConfigurationManager.ConnectionStrings["mycollegeproject"]
,导致NRE。
{{1}}