I want to remove the Querystring part from my Request.UrlReferrer.AbsoluteUri before redirecting to C #.
For example, if you have
Request.UrlReferrer.AbsoluteUri = "http://localhost:8080/english/index_2011.aspx?logout=true"
Now I want
Response.Redirect(Request.UrlReferrer.AbsoluteUri) without QueryString part (?logout=true")
Please use C #
c # query-string
Manoj singh
source share