国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

WEB打印設置解決方案四(在ASP中實現網絡打印功能)

2019-11-18 19:13:02
字體:
來源:轉載
供稿:網友

使用到的技術:  
asp,WSH,VBScript  
文件ASPPRint.asp代碼如下:  
<%@ Language=VBScript %>  
<%  
     Option Explicit  

     Dim strSubmit             ' Form中用來保存提交按鈕的值  
     Dim strPrinterPath      ' Form中保存網絡打印機路徑的值  
     Dim 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>  
 
<%  
     If strSubmit = "" Then  
%>  

  注意的是:  
      由于我是演示起見,其中有關NT的帳號和密碼都是使用了不加密的手段在ASP中傳遞的真正的運用中應該對該登錄過程進行安全處理。  
  <FORM action="ASPPrint.asp" method=POST id=form name=form>  
     <TABLE WIDTH=100% ALIGN=center BORDER=0 CELLSPACING=1 CELLPADDING=1>  
         <TR>  
              <TD ALIGN=right NOWRAP>網絡打印機路徑:</TD>  
              <TD ALIGN=left NOWRAP><INPUT type="text" id=printerpath name=printerpath value="http://< Domain >/< Printer >"></TD>  
         </TR>  
         <TR>  
              <TD ALIGN=right NOWRAP>登錄帳號:</TD>  
              <TD ALIGN=left NOWRAP><INPUT type="text" id=username name=username   
              value="<% = strUsername %>"></TD>  
         </TR>  
         <TR>  
              <TD ALIGN=right NOWRAP>登錄口令:</TD>  
              <TD ALIGN=left NOWRAP><INPUT type="password" id=password name=password></TD>  
         </TR>  
         <TR>  
             <TD ALIGN=right NOWRAP>請輸入你想打印的文字:</TD>  
             <TD ALIGN=left NOWRAP><TEXTAREA rows=2 cols=20 id=message name=message></TEXTAREA></TD>  
         </TR>  
         <TR>  
             <TD ALIGN=right NOWRAP> </TD>  
             <TD ALIGN=left NOWRAP><INPUT type="submit" value="Submit" id=submit name=submit></TD>  
         </TR>  
     </TABLE>  
  </FORM>  

  當以上信息被提交后,就可以按照下面的代碼進行打印了。  
  <%  
  Else  
     ' 從form中取得響應信息。  
     strPrinterPath = Request.Form("printerpath")  
     strUsername = Request.Form("username")  
     strPassword = Request.Form("password")  
     strMessage = Request.Form("message")  

       We will now use the VBScript FileSystemObject object and the WSH Net work 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:   
     ' 使用WSH連接網絡打印機
     Set objWSHNet = CreateObject("WScript.Network")     
     objWSHNet.AddPrinterConnection "LPT1", strPrinterPath, False, strUsername, strPassword  
     '使用文件系統對象將打印設備作為一個文件使用  
     Set objFS = CreateObject("Scripting.FileSystemObject")
     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> 


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 宾川县| 崇左市| 陕西省| 晋宁县| 铜川市| 怀柔区| 奇台县| 江津市| 镇原县| 伊金霍洛旗| 德格县| 洛浦县| 东乌珠穆沁旗| 大足县| 敦化市| 湘阴县| 常德市| 双鸭山市| 祥云县| 恭城| 浑源县| 从化市| 辽宁省| 宜春市| 来宾市| 洛扎县| 安塞县| 浪卡子县| 泽普县| 毕节市| 揭阳市| 仁布县| 永寿县| 南陵县| 兴仁县| 康保县| 扬中市| 远安县| 醴陵市| 屯门区| 开化县|