20
打印過程中,能不能取得打印機的名稱
--------------------编程问答--------------------
不知道,帮顶,.
--------------------编程问答--------------------
不知道,帮顶,.
--------------------编程问答--------------------
不知道,帮顶,.
--------------------编程问答--------------------
不知道 绑定
--------------------编程问答--------------------
using System.Drawing.Printing;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string strPrinterName;
strPrinterName = new PrintDocument().PrinterSettings.PrinterName;
Response.Write(strPrinterName);
}
}
也就是用两种不同的方法
文件系统:可以正确取得打印机名
本地IIS: 取不到提示:未设置默认打印机。
补充:.NET技术 , ASP.NET