我需要使用頁面上存在的現有數據填充新窗口(無菜單,無地址欄)。
我正在使用一個java腳本函數來達到這個目的。.NET MVC中的彈出窗口
function popup() {
window.open("../AcknowledgeStatements/OutStandingAckInPdf", '', 'scrollbars=yes,width=740,height=600,resizable=yes');
}
<input name="cmdButton" id="cmdPrint" type="button" class="button" value="Print" onclick="popup()"/>
如何將此頁中的模型和TempData/ViewData傳遞到彈出窗口? 有人可以幫我嗎?