I have a requirement of populating a new window (With no menus, no address bar) using the existing data that I have on the page.
I am using a java script function for this purpose.
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()"/>
How do I pass my Model and TempData/ViewData in this page to the popup window? Can someone help me on this?