Skip to content
March 16, 2010 / Manoranjan

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.

Bbut 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.

Leave a comment