在“ Web API重定向(URI)”中获取查询字符串参数

时间:2018-07-27 12:00:43

标签: c# jquery asp.net-web-api2

   [Route("user/Report")]
public IHttpActionResult Report()
{
   string url = "https://localhost:xxxx/User/ReportPage.html?Param1=value";
   System.Uri uri = new System.Uri(url);
   return Redirect(uri);
}

我正在尝试使用jquery在ReportPage.html中获取“ param1”

0 个答案:

没有答案