ASP.Net Error: Response is not available in this context


ASP.Net Error: Response is not available in this context

ASP.Net Error: Response is not available in this context



This error occurred when i tried to call Response.Redirect method from a class file. Then i tried to find the solution and i got to know that when we use the response object from an aspx page either from aspx page or it's codebehind page, the response object is directly available because all these derived from the page object.

When we use the response object in our own class, the object is not directly available, so we got this message.

But we can use it by the following method :

HttpContext.Current.Response.Redirect("http://google.com");

Same problem happens when we tried to call a function from Response object.

Thank You.

Reference: http://msahoo.wordpress.com/2010/03/16/asp-net-error-response-is-not-available-in-this-context/


Related Articles

More articles: Respone redirect Server Transfer

Comments



  • Do not include your name, "with regards" etc in the comment. Write detailed comment, relevant to the topic.
  • No HTML formatting and links to other web sites are allowed.
  • This is a strictly moderated site. Absolutely no spam allowed.
  • Name:
    Email: