I want to hide the Querystring which is displayed into my URL as shown below in Image::

I am opening it into New Window as::
1) Jquery Code to Oepn New Window:
 var url = rootUrl("Home/Test?Docs=" + check);
 var w = window.open(url, '_blank');
And 2) Controller(Server side) code :
    public class TestViewModel
    {
        public string Docs { get; set; }
        public long DocIDs { get; set; }
        public long TestIDs { get; set; }
    }
    public ActionResult Test(TestViewModel Test)
    {
        return View();
    }
But in this case the Document IDs displayed into the Querystring. I just want to hide the Querystring for more security. How can I do this?
 
     
     
     
    