Reputation: 19158
Im working with querystrings and experience problems with it. i got different shipping providers and i do package tracking, so i show their tracking pages on "my" site in a iframe.
now the strange thing is that i only get the full querystring on one of the providers. one if the providers have a really long tracking url but two got pretty much the same.
i use this to catch the querystring
<% var url = HttpContext.Current.Request.QueryString["tracking"]; %>
is there maybe another way to get the full querystring after my querystring [tracking]
?
Upvotes: 0
Views: 1574
Reputation: 896
I think this is the solution: string str = Request.QueryString.ToString();
Upvotes: 2