HI, I need to remove a querystring when a user clicks a particular LinkButton. So for example if the querystring is http://UserProfileManager.com?UserID=1234 .... when the u
On page load you could extract the query string to a hidden text box.
When the user clicks the button clear the text box
If the user navigates away use the string in the text box and append the query string to the URL.
I hope this helps Sp