我正在使用 MVC 3,并且我有一个按钮,用户可以按下该按钮来更新某些记录或不更新某些记录。我试图在用户按下No, thank you button
. 在做了一些研究之后,我能够找到的关于这个主题的所有内容都是使用 jQuery 或 javascript 关闭一个窗口。我希望有一种方法可以关闭 actionLink 中的窗口。我在下面包含了按钮代码,请随时提出您可能遇到的任何问题,因为我会经常回来查看。如果您需要任何其他代码,我也很乐意提供。谢谢你的帮助!
<div class="message dialog" title="Changes Saved">
You have successfully saved your changes.<br/>Would you like to update the other versions of this Project?
<br />
@Html.ActionLink("Yes, Update Projects", "UpdateProject", "Project", new { id = Model.IAMP_PK }, new { @class = "button2" })
@Html.ActionLink("No, Thank you", null, null, new { @class = "button2" })
</div>