J
Jon Sequeira
Is there a way to redirect from an ASP.NET page to an ASP page without
showing the ASP page's URL in the client's browser?
This works perfectly with an HTML page, for example:
path = "~/cp/test.htm"
Server.Transfer(path, False)
But with an .asp extension, the I get an HttpException, "Error executing
child request for ~/cp/test.asp."
I suppose the ASP.NET page factory is trying to execute the ASP page.
If anyone has suggestions on another way to accomplish this, I'm very
curious.
Thanks.
--Jon
showing the ASP page's URL in the client's browser?
This works perfectly with an HTML page, for example:
path = "~/cp/test.htm"
Server.Transfer(path, False)
But with an .asp extension, the I get an HttpException, "Error executing
child request for ~/cp/test.asp."
I suppose the ASP.NET page factory is trying to execute the ASP page.
If anyone has suggestions on another way to accomplish this, I'm very
curious.
Thanks.
--Jon