When user clicked on A tag ( <a href='showSomething.aspx?id=11&key=fixed'>Bring Something</a> ) showSomethingPage.aspx will be shown with URL parameters. But I want to change URL from showSomething.aspx?id=11&key=fixed to showSomething.aspx?key=fixed in despite of shown the thing with id 11.
When user clicked on A tag ( <a href=’showSomething.aspx?id=11&key=fixed’>Bring Something</a> ) showSomethingPage.aspx will be
Share
Try saving the ID in the session state and then using Response.Redirect.