I want to do something similar to what happens when you click an asp.net button that has a PostBackURL set. I've tried Server.Transfer
but the URL doesn't change (which is something I want). Is there a better way to do this, or alternatively is there a way to make Server.Transfer display the correct URL?
Try Response.Redirect
UPDATE:
You can't do a proper postback from codebehind to my knowledge I'm afraid