I\'ve got a string in .NET which is actually a url. I want an easy way to get the value from a particular parameter.
Normally, I\'d just use Request.Params[
Request.Params[
if you want in get your QueryString on Default page .Default page means your current page url . you can try this code :
string paramIl = HttpUtility.ParseQueryString(this.ClientQueryString).Get("city");