Yes, there is. On the server you can use Server.Transfer, which skips the step of informing the client browser.
You can also use Response.Write to push some JavaScript to the client, using location.href to force the browser to request a new page (you can pass in the old URL so in the user's experience he "goes back" while in reality (history-wise) he'' go forward).
Cheers,
Imar
|