当前位置:  开发笔记 > 编程语言 > 正文

打印WebBrowser控件内容

如何解决《打印WebBrowser控件内容》经验,为你挑选了1个好方法。

我非常喜欢用.NET打印.我想打印一个WebBrowser控件中显示的页面.我怎么做?



1> RuudKok..:

MSDN有一篇关于此的文章,但是他们的代码示例演示了如何使用WebBrowser控件打印网页而不显示它.:

如何:使用WebBrowser控件进行打印

c#代码:

private void PrintHelpPage()
{
    // Create a WebBrowser instance. 
    WebBrowser webBrowserForPrinting = new WebBrowser();

    // Add an event handler that prints the document after it loads.
    webBrowserForPrinting.DocumentCompleted +=
        new WebBrowserDocumentCompletedEventHandler(PrintDocument);

    // Set the Url property to load the document.
    webBrowserForPrinting.Url = new Uri(@"\\myshare\help.html");
}

private void PrintDocument(object sender,
    WebBrowserDocumentCompletedEventArgs e)
{
    // Print the document now that it is fully loaded.
    ((WebBrowser)sender).Print();

    // Dispose the WebBrowser now that the task is complete. 
    ((WebBrowser)sender).Dispose();
}


我不太确定你的意思是什么吗?WebBrowser类用于在WinForms应用程序中显示Web页面.我假设你有一个ASP.NET网站(WebForms),你想打印一个页面?您应该使用JavaScript,例如:[window.print()](https://developer.mozilla.org/en/DOM:window.print)
推荐阅读
mobiledu2402851373
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有