获取托管中发布的 Web 应用程序中的默认打印机名称

发布于 2024-12-09 17:13:18 字数 85 浏览 1 评论 0原文

我在托管中发布了我的网页,但我无法打印我的报告,因为(我认为)我的网络应用程序无法获取我的打印机名称。

请给个主意。

多谢。

I have my web page published in hosting, and I cant print my reports because (I tink) my web application can`t get my printer name.

An Idea please.

Thanks a lot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的心境我的脸 2024-12-16 17:13:18

使用 Web 配置文件设置您的打印机名称。在打印机设置中使用此名称。

<add key="PrinterName" value="\\192.168.1.1\Canon LBP6000/LBP6018" />

在 C# 中

 PrintDocument printDoc = new PrintDocument();
 string printerName = WebConfigurationManager.AppSettings["PrinterName"];
 printDoc.PrinterSettings.PrinterName = printerName; 

确实对我有用。

use web config file to set your printer name. use this name in printer settings.

<add key="PrinterName" value="\\192.168.1.1\Canon LBP6000/LBP6018" />

in c#

 PrintDocument printDoc = new PrintDocument();
 string printerName = WebConfigurationManager.AppSettings["PrinterName"];
 printDoc.PrinterSettings.PrinterName = printerName; 

did work for me .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文