本文介绍了打印出数据网格视图的内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要帮助!
我有一个程序使用数据网格视图显示列表的内容,并且想知道如何打印数据网格视图的内容(使用打印对话框)?
Hi, I need help!
I have a program that uses a data grid view to display the contents of a list and want to know how I can print the contents of the datagrid view (using a print dialog)?
推荐答案
function Clickheretoprint() {
var content_vlue = document.getElementById("dvPrint").innerHTML;
var docprint = window.open("", "", disp_setting);
docprint.document.open();
docprint.document.write(content_vlue);
docprint.print();
docprint.document.close();
docprint.close();
这篇关于打印出数据网格视图的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!