G
Guest
I have written an HttpHandler which I invoke through an ashx page.
The HttpHandler does various things to process the request, then it is supposed to redirect to a confirmation page.
Everything up to the redirect works fine, but I can't get the redirect to work.
If I do a ...
context.Response.Write("Hello World");
.... the HttpHandler works great and the browser loads the text fine,
but if I change it to ...
context.Response.Redirect("/filepath/file.htm");
.... the browser just spins and spins like it is trying to load something but nothing every does.
The redirect URL does show up in the status bar, and the URL is valid, but nothing ever loads!
I have tried Server.Transfer and Server.Execute and they exhibit the same behavior. Does anybody know what might be going on?
The HttpHandler does various things to process the request, then it is supposed to redirect to a confirmation page.
Everything up to the redirect works fine, but I can't get the redirect to work.
If I do a ...
context.Response.Write("Hello World");
.... the HttpHandler works great and the browser loads the text fine,
but if I change it to ...
context.Response.Redirect("/filepath/file.htm");
.... the browser just spins and spins like it is trying to load something but nothing every does.
The redirect URL does show up in the status bar, and the URL is valid, but nothing ever loads!
I have tried Server.Transfer and Server.Execute and they exhibit the same behavior. Does anybody know what might be going on?