Querystring needed to set to empty
-
Hello i need to set a query string to null or empty after it had a value can any body assist me??
-
Try to explain that again please. If you want to set a string to null, which probably is not want you want, you can do...
string s = "something";
//do something with string
s = null;Life goes very fast. Tomorrow, today is already yesterday.
I have a query string that is used in a page. i sent this url from pop up page lets say window.opener.location.href = window.opener.location.href +" 'Id=1'"; but after i get the Id request.queryString["Id"] i want it to be string.empty or null i simply want to remove it or assign to it a value so i will not check it again.
-
I have a query string that is used in a page. i sent this url from pop up page lets say window.opener.location.href = window.opener.location.href +" 'Id=1'"; but after i get the Id request.queryString["Id"] i want it to be string.empty or null i simply want to remove it or assign to it a value so i will not check it again.
-
Hello i need to set a query string to null or empty after it had a value can any body assist me??
QueryString collection is readonly, it can not be modified.
Coding C# www.excitetemplate.com