明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

溫故知新:幾個(gè)經(jīng)典的ASP應(yīng)用

[摘要]1. 下面的代碼演示了如何在服務(wù)端獲取來(lái)自客戶端瀏覽器中某一個(gè)圖片的x,y坐標(biāo),注意input控件的類(lèi)型是image類(lèi)型。<form><Input Name="ImageMap" Type="Image" Src="http://...

1. 下面的代碼演示了如何在服務(wù)端獲取來(lái)自客戶端瀏覽器中某一個(gè)圖片的x,y坐標(biāo),注意input控件的類(lèi)型是image類(lèi)型。
<form>
<Input Name="ImageMap" Type="Image" Src="http://www.okasp.com/techinfo/ImageMap.jpg" Alt="Click Anywhere">
</form> <%ImageMap.x = <%=Request("ImageMap.x")
ImageMap.y = <%=Request("ImageMap.y")%>    2. 利用ADODB.Stream對(duì)象,在IE瀏覽器中下載服務(wù)端上的各類(lèi)文件。   即直接提示用戶下載而不是由瀏覽器打開(kāi)某些文件。注意,下面的代碼拷貝到ASP文件中后,不要再添加一些非ASP代碼在頁(yè)面中:如HTML和Javascript客戶端的代碼。
<%
'--------------------------------------------
Response.Buffer = True
Dim strFilePath, strFileSize, strFileName Const adTypeBinary = 1strFilePath = "文件路徑 "
strFileSize = ... 文件大小,可選
strFileName = "文件名"Response.Clear'8*******************************************8
' 需要在你的服務(wù)器上安裝 MDAC 2.6 或MDAC2.7
'8*******************************************8
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = adTypeBinary
objStream.LoadFromFile strFilePathstrFileType = lcase(Right(strFileName, 4)) '文件擴(kuò)展名' 通過(guò)文件擴(kuò)展名判斷 Content-Types
Select Case strFileType
Case ".asf"
ContentType = "video/x-ms-asf"
Case ".avi"
ContentType = "video/avi"
Case ".doc"
ContentType = "application/msword"
Case ".zip"
ContentType = "application/zip"
Case ".xls"
ContentType = "application/vnd.ms-excel"
Case ".gif"
ContentType = "image/gif"(出處:pconline)