response redirect from .ashx file

Viewed 19776

I have ashx file and I want to redirect from ashx to aspx page. Some solution?

3 Answers
void ProcessRequest(HttpContext context)
{
     context.Response.Redirect(newUrl);
}
Related