Dim strSubmit 'Form中用來保存提交按鈕的值 Dim strDim strUsername 'Form中用戶名的值 Dim strPassWord 'Form中密碼的值 Dim strMessage 'Form打印內容的值 Dim objFS 'VBScript中的文件系統對象 Dim objWSHNet 'WSH中的網絡對象 Dim objPrinter '打印對象
strSubmit = Request.Form("Submit") %>
<HTML> <HEAD> <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0"> </HEAD> <BODY>
We will now use the VBScript FileSystemObject object and the WSH Network object. The Network object will give us the methods we need to open a printer connection, and the FileSystemObject will allow us to stream our output to the printer. We create these objects in the following code example:
Set objFS = CreateObject("Scripting.FileSystemObject") Set objWSHNet = CreateObject("WScript.Network") ' 使用WSH連接網絡打印機 objWSHNet.AddPrinterConnection "LPT1", strPrinterPath, False, strUsername, strPassword ' 使用文件系統對象將打印設備作為一個文件使用 Set objPrinter = objFS.CreateTextFile("LPT1:", True) ' 給打印設備送出文本 objPrinter.Write(strMessage) '關閉打印設備對象并進行錯誤陷阱處理 On Error Resume Next objPrinter.Close ' 如果發生錯誤,關閉打印連接,并輸出錯誤信息 If Err Then Response.Write ("Error # " & CStr(Err.Number) & " " & Err.Description) Err.Clear Else ' 操作成功,輸出確認信息 Response.Write("<CENTER>") Response.Write("<TABLE WIDTH=100% ALIGN=center BORDER=0 CELLSPACING=1 CELLPADDING=1>") Response.Write("<TR><TD ALIGN=RIGHT><B>打印消息送出:</B></TD>") Response.Write("<TD ALIGN=LEFT>" & strMessage & "</TD></TR>") Response.Write("<TR><TD ALIGN=RIGHT><B>網絡打印機路徑:</B></TD>") Response.Write("<TD ALIGN=LEFT>" & strPrinterPath & "</TD></TR>") Response.Write("<TR><TD ALIGN=RIGHT><B>登錄帳號:</B></TD>") Response.Write("<TD ALIGN=LEFT>" & strUsername & "</TD></TR>") Response.Write("</TABLE>") Response.Write("</CENTER>") End If ' 取消打印連接 objWSHNet.RemovePrinterConnection "LPT1:" Set objWSHNet = Nothing Set objFS = Nothing Set objPrinter = Nothing End If %> </BODY> </HTML>