码迷,mamicode.com
首页 > 其他好文 > 详细

把路径设置为全局变量

时间:2016-12-01 17:11:38      阅读:470      评论:0      收藏:0      [点我收藏+]

标签:key   conf   全局   static   nbsp   class   script   配置文件   url   

配置文件web.config

<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="PictureURL" value="C:/SavePicture"/>
</appSettings>

定义全局变量的类

public class Helper
{
public static string ConstURL ;

static Helper()
{
ConstURL =ConfigurationManager.AppSettings["PictureURL"];
}
}

 

把路径设置为全局变量

标签:key   conf   全局   static   nbsp   class   script   配置文件   url   

原文地址:http://www.cnblogs.com/ping2015/p/6122494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!