I know this is repeated question on Stack. But in my case the URL which I am using is passing the querystring details.
http://servername:82/root/ReportViewer.aspx?Id=/test/base/eg1 &Name=ReportDeatilName & User=783534
How can I hide the whole query string?
If you can, instead of making a call with GET, you could generate the call using a POST.
So your url will look cleaner (eg: servername:82/root/ReportViewer.aspx), because all the infos are sent in the
<form>.