把路径设置为全局变量
Posted ping的故事
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把路径设置为全局变量相关的知识,希望对你有一定的参考价值。
配置文件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"];
}
}
以上是关于把路径设置为全局变量的主要内容,如果未能解决你的问题,请参考以下文章
Windows 系统下设置Nodejs NPM全局路径和环境变量配置