本文介绍了如何将样式gridview打印出来?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要表格格式的页面。



我尝试了什么:



I need my page in table format.

What I have tried:

var prtWindow = window.open(windowUrl, windowName,
        'left=100,top=100,right=100,bottom=100,width=700,height=500');
    prtWindow.document.write('');
    prtWindow.document.write('');
    prtWindow.document.write(gridData.outerHTML);
    prtWindow.document.write('');
    prtWindow.document.close();
    prtWindow.focus();
    prtWindow.print();
    prtWindow.close();

推荐答案



这篇关于如何将样式gridview打印出来?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-28 01:19