tags:

views:

492

answers:

2

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
A: 

Your coudl do it by writing a handler.

http://dotnetperls.com/ashx-handler

Saar