ASP.NET MVC全局变量

如何在ASP.NET MVC中声明全局变量

回答:

public static class GlobalVariables

{

// readonly variable

public static string Foo

{

get

{

return "foo";

}

}

// read-write variable

public static string Bar

{

get

{

return HttpContext.Current.Application["Bar"] as string;

}

set

{

HttpContext.Current.Application["Bar"] = value;

}

}

}

以上是 ASP.NET MVC全局变量 的全部内容, 来源链接: utcz.com/qa/433226.html

回到顶部