I'm currently redirecting a page using
Response.Redirect("URL");
this works great, however it changes the url too. For example:
http://localhost/index.aspx
Redirected to: test.aspx will change the url to:
http://localhost/test.aspx
Is it possbile to redirect the content without changing the URL?... so the Url will be:
http://localhost/test.aspx
BUT the content would of been redirected to
test.aspx
Thank you.
Server.Transfer) but they all have drawbacks depending on the specifics of your scenario. The reason for that being that this is not really what those tools are for and is quite an odd thing to try to do. Can I ask why you want to do this? It seems like a bad idea.