Im unable to access server/response variable in my static function. Can i access them in static function or should i include some namespaces

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

System.Web.HttpContext.Current object includes current Server, Response, Request etc instances.

link|improve this answer
feedback

I'm having a really hard time understanding your question, but is it possible that you are looking for HttpContext.Current?

var context = HttpContext.Current;
// now you can use context.Request, context.Response, context.Server, etc.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.