I'm working on a project and I want to do is to clear the querystring in my url bar.
but until now i haven´t much luck..
hope that someone can help me with this..
this is one of my code which i trying to do:
System.Reflection.PropertyInfo isreadonly = typeof(System.Collections.Specialized.NameValueCollection).GetProperty( "IsReadOnly", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
isreadonly.SetValue(this.Request.QueryString, false, null);
this.Request.QueryString.Remove("abc");