运行一直提示:System.NullReferenceException: 未将对象引用设置到对象的实例,怎么解决?

2025-04-02 06:49:25
推荐回答(3个)
回答1:

打开web.config文件.


下面加以下内容:


connectionString="你自己的数据库连接字符串"
providerName="System.Data.SqlClient" />

回答2:

顶一楼,你可能是没写配置,或者就是配置名不一致,找不到,就是null了

回答3:

出错行在
行 30: string conString = WebConfigurationManager.ConnectionStrings["ProductInfo"].ConnectionString;
应该是类WebConfigurationManager里面没有配置ConnectionString;所以导致空对象引用的错误!