配置文件app.config怎么调用呢?
stringstr=System.Configuration.ConfigurationSettings.AppSettings["connection"].ToStri...
string str=System.Configuration.ConfigurationSettings.AppSettings["connection"].ToString();//app.config中设置key="connection"
我是这样调用的,但是报错:未将对象引用设置到对象的实例;
此外,还有一个警告,说:未声明“key”属性
不知道哪里错了呐?谢谢大家 展开
我是这样调用的,但是报错:未将对象引用设置到对象的实例;
此外,还有一个警告,说:未声明“key”属性
不知道哪里错了呐?谢谢大家 展开
展开全部
这样调用:
string str=System.Configuration.ConfigurationManager["connection"].ToString();//connection是配置文件中的name
SQLConnection con=new SQLConnection(str);
app.config中设置如下:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add connectionString="Data Source=Lilith-PC\SQL2005;Initial Catalog=ManagementSoftware;Integrated Security=True" name="connection"/>
</connectionStrings>
</configuration>
此外,注意app.config要放在表示层里
string str=System.Configuration.ConfigurationManager["connection"].ToString();//connection是配置文件中的name
SQLConnection con=new SQLConnection(str);
app.config中设置如下:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add connectionString="Data Source=Lilith-PC\SQL2005;Initial Catalog=ManagementSoftware;Integrated Security=True" name="connection"/>
</connectionStrings>
</configuration>
此外,注意app.config要放在表示层里
展开全部
app.config格式如下(必须放在configuration\appSettings下面):
<configuration>
<appSettings>
<add key="DebugLevel" value="Debug" />
</appSettings>
</configuration>
C#代码如下:
using System.Configuration;
然后使用下面代码调用
string DebugLevel = ConfigurationManager.AppSettings.Get("DebugLevel");
注意在project的引用中增加System.Configuration,这个需要手工增加的
<configuration>
<appSettings>
<add key="DebugLevel" value="Debug" />
</appSettings>
</configuration>
C#代码如下:
using System.Configuration;
然后使用下面代码调用
string DebugLevel = ConfigurationManager.AppSettings.Get("DebugLevel");
注意在project的引用中增加System.Configuration,这个需要手工增加的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这样调用:
string str=System.Configuration.ConfigurationManager["connection"].ToString();//connection是配置文件中的name
SQLConnection con=new SQLConnection(str);
app.config中设置如下:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add connectionString="Data Source=Lilith-PC\SQL2005;Initial Catalog=ManagementSoftware;Integrated Security=True" name="connection"/>
</connectionStrings>
</configuration>
此外,注意app.config要放在表示层里
string str=System.Configuration.ConfigurationManager["connection"].ToString();//connection是配置文件中的name
SQLConnection con=new SQLConnection(str);
app.config中设置如下:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add connectionString="Data Source=Lilith-PC\SQL2005;Initial Catalog=ManagementSoftware;Integrated Security=True" name="connection"/>
</connectionStrings>
</configuration>
此外,注意app.config要放在表示层里
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询