i want to remove the query string from the url in C#. I will redirect to this page with a query string from another page like this, http://www.something.com/details.aspx?id=100. But the url in status bar should be changed to http://www.something.com/search.aspx.
I can't use sessions or 'post'. I tried implementing url rewriting,but i don't really understand how to set the rule to remove query string.
Anyone pls help...