我无法在我的静态函数中访问服务器/响应变量。我可以在静态函数中访问它们还是应该包含一些命名空间
问问题
205 次
2 回答
2
我很难理解你的问题,但你有可能正在寻找HttpContext.Current
吗?
var context = HttpContext.Current;
// now you can use context.Request, context.Response, context.Server, etc.
于 2010-09-20T10:48:53.947 回答
1
System.Web.HttpContext.Current
对象包括 current Server
, Response
,Request
等实例。
于 2010-09-20T10:48:01.493 回答