I have a single page that shows different content upon reloading. However, when I reload the page, I want a different query string parameter shown each time it reloads. For example:
http://myserver/Default.aspx?step=1
http://myserver/Default.aspx?step=2
http://myserver/Default.aspx?step=3
I don't want to call Response.Redirect or Server.Transfer since I'm not currently doing this or want to: my steps work fine...I just want to show a different URL parameter for SEO purposes. I've tried HttpContext.RewritePath() but this doesn't change the display of the URL in the browser. How can I do this?