马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
缺乏可以共同遵循的行业标准,ASP还处在发展初期,大家对它的理解不同,如产品和服务标准,收费标准等,不利于行业的健康发展。项目进进测试阶段,临时闲上去了,写点条记.
读取web.config大概app.config中自界说设置的值的属性,经常使用2种办法.
假定有以下设置:
<appSettings>
<addkey="A"value="configwithA"/>
<addkey="B"value="configwithB"/>
</appSettings>
usingSystem.Configuration;
[A]办法
stringstrTest=ConfigurationSettings.AppSettings["A"];//getAsvalue
[B]办法
AppSettingsReaderappReader=newAppSettingsReader();
stringstrTest=appReader.GetValue(strKey,typeof(string)).ToString();
e.g.
privatestringGetConfig(stringstrKey)
{
AppSettingsReaderappReader=newAppSettingsReader();
stringstrReturn;
try
{
strReturn=appReader.GetValue(strKey,typeof(string)).ToString();
}
catch(Exceptionex)
{
strReturn=ex.Message.ToString();
}
finally
{
appReader=null;
}
returnstrReturn;
}
</p>问题是他们究竟是喜欢他们是使用软件时,速度快还是速度慢好.(当然在3秒以内).无论是他们输入资料时,查找资料时,分析资料时. |