在C#中访问静态函数中的Server变量时出现问题

时间:2010-09-20 10:45:11

标签: c# static-functions

我无法在静态函数中访问服务器/响应变量。我可以在静态函数中访问它们,还是应该包含一些名称空间

2 个答案:

答案 0 :(得分:2)

我很难理解你的问题,但你有可能在寻找HttpContext.Current吗?

var context = HttpContext.Current;
// now you can use context.Request, context.Response, context.Server, etc.

答案 1 :(得分:1)

System.Web.HttpContext.Current对象包含当前ServerResponseRequest等实例。