从URL检索查询字符串

时间:2016-11-09 12:55:05

标签: javascript c#

我正在从一个页面导航到其他页面,导航时我在javascript中传递了两个查询参数

 var redirect_page = '<%= ResolveUrl("~/GUI/ReviewNEW.aspx") %>'+"?testDate=" + lDate;
 window.location = redirect_page; 

因此传递的日期在URL中看起来像

enter image description here

在被调用页面ReviewNEW.aspx.cs中,我需要检索查询参数testDate。我正在使用

private string l_Date = Request.QueryString["testDate"].ToString();

我不确定这是否会转换为10/14/2016所以我可以在select语句中使用此值。

1 个答案:

答案 0 :(得分:1)

试试这个:

System.Web.HttpUtility.UrlDecode("12%2F10%2F2011+10%3A22%3A11");

给出

"12/10/2011 10:22:11"