如何在MVC上将aspx文件作为弹出窗口调用?

时间:2017-10-09 05:47:19

标签: jquery model-view-controller

我需要在MVC应用程序上打开aspx文件作为弹出窗口,我试过MVC

  

MVC弹出代码:

window.open('/Scan/pop', '_blank', 'left=100,top=100,width=400,height=300,toolbar=1,resizable=0');
  

aspx popup code:

window.open('http://localhost:58158/Views/Scan/pdf.aspx' + '?id=' + id, '', 'width=800, height=650, top=0, left=250, status=0,toolbar=0');

如何在MVC中打开aspx文件作为弹出窗口? 还有一件事我为什么要调用aspx页面意味着拥有现有应用程序代码的页面无法跳过该页面。

注意: - MVC window.open工作正常,aspx只能打开

0 个答案:

没有答案