使用href = Url.Action()

时间:2017-10-10 10:36:21

标签: c# jquery asp.net asp.net-mvc razor

我正在尝试将这些值传递给Confirmation动作结果,但我有

  

语法错误:缺失;

 var url = '@Url.Action("Confirmation", "BookReservation")/?record_locator=' + record_locator +'&hid='@Request.QueryString["hid"] ;

    window.location.href = url;

他们对此代码有任何不妥之处

任何建议

1 个答案:

答案 0 :(得分:0)

首先创建网址

var url = @Url.Action("Confirmation", "BookReservation");

然后添加参数

window.location.href = url + '?record_locator=' + record_locator + '&hid=' + @Request.QueryString["hid"] ;