Extjs之引用其他aspx页面

原文链接: http://www.cnblogs.com/lx0551/archive/2012/02/10/2345492.html

用extjs搭的框架,在用ReportViewer展示报表。新建一个ShowReport.aspx页面来显示报表,然后引用这个页面。

var iframePanel = new Ext.Panel({
                style: 'padding:0px 0px 0px 5px;',
                border: false,
                html: ' <iframe id="leftIframe" width="100%" Height="458px" src="ShowReport.aspx" scrolling="no" frameborder="0" border="0" marginheight="0" allowtransparency="yes"> </iframe>'

 });

转载于:https://www.cnblogs.com/lx0551/archive/2012/02/10/2345492.html

猜你喜欢

转载自blog.csdn.net/weixin_30646315/article/details/94801662