日韩天天综合网_野战两个奶头被亲到高潮_亚洲日韩欧美精品综合_av女人天堂污污污_视频一区**字幕无弹窗_国产亚洲欧美小视频_国内性爱精品在线免费视频_国产一级电影在线播放_日韩欧美内地福利_亚洲一二三不卡片区

用ASP進行網(wǎng)絡打印的功能_ASP教程

編輯Tag賺U幣
教程Tag:暫無Tag,歡迎添加,賺取U幣!

推薦:用ASP建立站內搜索
假如你擁有一個龐大的網(wǎng)站,內容又多,那么來訪者往往很難找到自己所需要的東東,這時候你就需要一個站內搜索來幫助來訪者更快的找到索要的資料了!現(xiàn)在你就可以用asp輕易的實現(xiàn)這種功能,何況現(xiàn)在支持asp的站點這么多,利用這個搜索引擎可以搜索到你的主頁里面任何一

 <%@ Language=VBScript %>
<%
Option Explicit

Dim strSubmit 'Form中用來保存提交按鈕的值
Dim strPRinterPath 'Form中保存網(wǎng)絡打印機路徑的值
Dim strUsername 'Form中用戶名的值
Dim strPassWord 'Form中密碼的值
Dim strMessage 'Form打印內容的值
Dim objFS 'VBScript中的文件系統(tǒng)對象
Dim objWSHNet 'WSH中的網(wǎng)絡對象
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>網(wǎng)絡打印機路徑:</TD>
<TD ALIGN=left NOWRAP><INPUT type="text" id=printerpath name=printerpath 
value="\\< 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 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連接網(wǎng)絡打印機
objWSHNet.AddPrinterConnection "LPT1", strPrinterPath, False, strUsername, strPassword
' 使用文件系統(tǒng)對象將打印設備作為一個文件使用
Set objPrinter = objFS.CreateTextFile("LPT1:", True)
' 給打印設備送出文本
objPrinter.Write(strMessage)
'關閉打印設備對象并進行錯誤陷阱處理
On Error Resume Next
objPrinter.Close
' 如果發(fā)生錯誤,關閉打印連接,并輸出錯誤信息
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>網(wǎng)絡打印機路徑:</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> 

分享:ASP整合一個SQL語句類
我們在寫asp數(shù)據(jù)庫程序的時候,通常都會用到SQL語句,而在增加數(shù)據(jù)和更新數(shù)據(jù)的時候,通常會使用一下方式:insert into message (incept,sender,title,content,sendtime,flag,issend) values ('incept(i)','membername','title','message',Now(),0,1) 當字段比較多的時

來源:模板無憂//所屬分類:ASP教程/更新時間:2013-04-25
相關ASP教程