I have ashx file and I want to redirect from ashx to aspx page. Some solution?
+2
A:
void ProcessRequest(HttpContext context)
{
context.Response.Redirect(newUrl);
}
Vitaliy Liptchinsky
2010-01-12 12:53:33