The whole url gets the url, which is probably due to the fact that you are not encoding the urls of the values you insert into the string. The URL will encode the values correctly and it should work:
Response.Redirect( "TestingReport.aspx?id=" + Server.UrlEncode(Request.QueryString("id")) + "&Test_Type_ID=" + Server.UrlEncode(Request.QueryString("Test_Type_ID")) + "&TType=" + Server.UrlEncode(Request.QueryString("TType")) )
Guffa source share