I want to hide the guts of my URL programmatically.
I know I can use:
Server.Transfer("url",boolean)
This is not what I want in this case. I would like to be able to manipulate the URL after I get the variables I need.
How would I do this in ASP.NET?
Edit:
My URL:
URL.aspx?st=S&scannum=481854
I want to change it when the page loads to just be URL.aspx?
but I need to first get the st
and scannum
values.