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/