Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个视图页面,其中有一个 HTML ActionLink。现在单击该操作链接,我想打开一个新的弹出窗口而不关闭前一个窗口。在这个新的弹出窗口中,我想显示我现有的视图页面。请给我一个更好的解决方案。
无法在这里工作的答案。我不得不使用
<%= Html.ActionLink("New Window", "Index", null, new { .target= "_blank" }) %>
这对我有用。只是缺少目标开始时的那段愚蠢的小时期。