如何在asp.net中设置默认打印机?

发布于 2024-12-25 21:00:26 字数 84 浏览 1 评论 0原文

我想设置默认打印机来打印 Web 应用程序中的文档。我不知道如何设置它。由于使用此应用程序的所有用户都应在其 PC 上连接特定的打印机。请帮我。提前致谢。

I want to set a default printer to print the docs from my web application. I don't know how to set it. As all the users using this application should have a specific printter accttached to their PC. Please help me. Thanks in advance.

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

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

发布评论

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

评论(1

百合的盛世恋 2025-01-01 21:00:26

说明

您无法设置访问您站点的用户的默认打印机。

如果您想以编程方式设置自己的默认打印机,可以使用以下函数。

[DllImport("winspool.drv", CharSet=CharSet.Auto, SetLastError=true)]
public static extern bool SetDefaultPrinter(string Name);

更多信息

Description

You can't set the default printer of a user who visits your site.

If you want to set your own default printer programmatically you can use the following function.

[DllImport("winspool.drv", CharSet=CharSet.Auto, SetLastError=true)]
public static extern bool SetDefaultPrinter(string Name);

More Information

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