The URL string generated after this response.redirect is causing us a headache. It is replacing the characters with url percent encoding characters and adding in extra file directories.
Response.Redirect("TestingReport.aspx?id=" + Request.QueryString("id") + "&Test_Type_ID=" + Request.QueryString("Test_Type_ID") + "&TType=" + Request.QueryString("TType"))
Why is it changing ? and = to the percent codes? I don’t understand why it is appending User Portal/Testing twice either.
Thanks
It’s called URLEncoding. Checkout this online utility to decode the string you have.
In .NET, you can use
System.Web.HttpUtilityto encode/decode.