I am navigating from one page in to other pages, while navigating I am passing two query parameters in the javascript as
var redirect_page = '<%= ResolveUrl("~/GUI/ReviewNEW.aspx") %>'+"?testDate=" + lDate;
window.location = redirect_page;
So the passed date is in the URL looks like
In the called page ReviewNEW.aspx.cs, I need to retrieve the query parameter testDate. I am using
private string l_Date = Request.QueryString["testDate"].ToString();
I am not sure if this will be converting in to 10/14/2016 so I can use this value in the select statement.

%2Fwith/if needed