在提交按钮单击的另一个选项卡/窗口中打开URL

时间:2013-12-11 13:36:31

标签: html asp.net-mvc submit

我有一个提交按钮,如

<form id="distribut" action = @Model.RedirectUrl method="post">
         @Html.HiddenFor(m => m.OrderToken)
         <input type="hidden" name="wwwww" value="1" />
         <input type ="submit" id="submit" name="submit" />
</form>

Model.RedirectUrl不是我自己的网站/应用程序中的网址。 它可能会根据某些条件而有所不同

问题是:

我可以在提交按钮上的不同选项卡/窗口中打开RedirectUrl吗?

1 个答案:

答案 0 :(得分:0)

您只需在表单中添加target="_blank"即可。但是当然你需要在试图之前做一些验证。