upfile.asp
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:8k
源码类别:

家庭/个人应用

开发平台:

ASP/ASPX

  1. <%@language=vbscript codepage=936 %>
  2. <!--#include file="checkpost.asp"-->
  3. <!--#include file="security.asp"-->
  4. <!--#include file="articleconn.asp"-->
  5. <%if session("flag")>1 then
  6.     response.write "<script>alert('您的操作权限不够!');history.back();</script>"
  7.     response.end
  8. end if
  9. %>
  10. <%
  11. Dim oUpFileStream
  12. '----------------------------------------------------------------------
  13. '文件上传类
  14. Class UpFile_Class
  15. Dim Form,File,Version,Err 
  16. Private Sub Class_Initialize
  17.  Version = "无惧上传类 Version V1.2"
  18.  Err = -1
  19. End Sub
  20. Private Sub Class_Terminate  
  21.   '清除变量及对像
  22.   If Err < 0 Then
  23.     Form.RemoveAll
  24.     Set Form = Nothing
  25.     File.RemoveAll
  26.     Set File = Nothing
  27.     oUpFileStream.Close
  28.     Set oUpFileStream = Nothing
  29.   End If
  30. End Sub
  31.    
  32. Public Sub GetData (MaxSize)
  33.    '定义变量
  34.   Dim RequestBinData,sSpace,bCrLf,sInfo,iInfoStart,iInfoEnd,tStream,iStart,oFileInfo
  35.   Dim iFileSize,sFilePath,sFileType,sFormValue,sFileName
  36.   Dim iFindStart,iFindEnd
  37.   Dim iFormStart,iFormEnd,sFormName
  38.    '代码开始
  39.   If Request.TotalBytes < 1 Then  '如果没有数据上传
  40.     Err = 1
  41.     Exit Sub
  42.   End If
  43.   If MaxSize > 0 Then '如果限制大小
  44.     If Request.TotalBytes > MaxSize Then
  45.     Err = 2 '如果上传的数据超出限制
  46.     Exit Sub
  47.     End If
  48.   End If
  49.   Set Form = Server.CreateObject ("Scripting.Dictionary")
  50.   Form.CompareMode = 1
  51.   Set File = Server.CreateObject ("Scripting.Dictionary")
  52.   File.CompareMode = 1
  53.   Set tStream = Server.CreateObject ("ADODB.Stream")
  54.   Set oUpFileStream = Server.CreateObject ("ADODB.Stream")
  55.   oUpFileStream.Type = 1
  56.   oUpFileStream.Mode = 3
  57.   oUpFileStream.Open 
  58.   oUpFileStream.Write Request.BinaryRead (Request.TotalBytes)
  59.   oUpFileStream.Position = 0
  60.   RequestBinData = oUpFileStream.Read 
  61.   iFormEnd = oUpFileStream.Size
  62.   bCrLf = ChrB (13) & ChrB (10)
  63.   '取得每个项目之间的分隔符
  64.   sSpace = MidB (RequestBinData,1, InStrB (1,RequestBinData,bCrLf)-1)
  65.   iStart = LenB  (sSpace)
  66.   iFormStart = iStart+2
  67.   '分解项目
  68.   Do
  69.     iInfoEnd = InStrB (iFormStart,RequestBinData,bCrLf & bCrLf)+3
  70.     tStream.Type = 1
  71.     tStream.Mode = 3
  72.     tStream.Open
  73.     oUpFileStream.Position = iFormStart
  74.     oUpFileStream.CopyTo tStream,iInfoEnd-iFormStart
  75.     tStream.Position = 0
  76.     tStream.Type = 2
  77.     tStream.CharSet = "gb2312"
  78.     sInfo = tStream.ReadText      
  79.     '取得表单项目名称
  80.     iFormStart = InStrB (iInfoEnd,RequestBinData,sSpace)-1
  81.     iFindStart = InStr (22,sInfo,"name=""",1)+6
  82.     iFindEnd = InStr (iFindStart,sInfo,"""",1)
  83.     sFormName = Mid  (sinfo,iFindStart,iFindEnd-iFindStart)
  84.     '如果是文件
  85.     If InStr  (45,sInfo,"filename=""",1) > 0 Then
  86.       Set oFileInfo = new FileInfo_Class
  87.       '取得文件属性
  88.       iFindStart = InStr (iFindEnd,sInfo,"filename=""",1)+10
  89.       iFindEnd = InStr (iFindStart,sInfo,"""",1)
  90.       sFileName = Mid  (sinfo,iFindStart,iFindEnd-iFindStart)
  91.       oFileInfo.FileName = Mid (sFileName,InStrRev (sFileName, "")+1)
  92.       oFileInfo.FilePath = Left (sFileName,InStrRev (sFileName, ""))
  93.       oFileInfo.FileExt = Mid (sFileName,InStrRev (sFileName, ".")+1)
  94.       iFindStart = InStr (iFindEnd,sInfo,"Content-Type: ",1)+14
  95.       iFindEnd = InStr (iFindStart,sInfo,vbCr)
  96.       oFileInfo.FileType = Mid  (sinfo,iFindStart,iFindEnd-iFindStart)
  97.       oFileInfo.FileStart = iInfoEnd
  98.       oFileInfo.FileSize = iFormStart -iInfoEnd -2
  99.       oFileInfo.FormName = sFormName
  100.       file.add sFormName,oFileInfo
  101.     else
  102.     '如果是表单项目
  103.       tStream.Close
  104.       tStream.Type = 1
  105.       tStream.Mode = 3
  106.       tStream.Open
  107.       oUpFileStream.Position = iInfoEnd 
  108.       oUpFileStream.CopyTo tStream,iFormStart-iInfoEnd-2
  109.       tStream.Position = 0
  110.       tStream.Type = 2
  111.       tStream.CharSet = "gb2312"
  112.       sFormValue = tStream.ReadText
  113.       If Form.Exists (sFormName) Then
  114.         Form (sFormName) = Form (sFormName) & ", " & sFormValue
  115.         else
  116.         form.Add sFormName,sFormValue
  117.       End If
  118.     End If
  119.     tStream.Close
  120.     iFormStart = iFormStart+iStart+2
  121.     '如果到文件尾了就退出
  122.   Loop Until  (iFormStart+2) >= iFormEnd 
  123.   RequestBinData = ""
  124.   Set tStream = Nothing
  125. End Sub
  126. End Class
  127. '----------------------------------------------------------------------------------------------------
  128. '文件属性类
  129. Class FileInfo_Class
  130. Dim FormName,FileName,FilePath,FileSize,FileType,FileStart,FileExt
  131. '保存文件方法
  132. Public Function SaveToFile (Path)
  133.   On Error Resume Next
  134.   Dim oFileStream
  135.   Set oFileStream = CreateObject ("ADODB.Stream")
  136.   oFileStream.Type = 1
  137.   oFileStream.Mode = 3
  138.   oFileStream.Open
  139.   oUpFileStream.Position = FileStart
  140.   oUpFileStream.CopyTo oFileStream,FileSize
  141.   oFileStream.SaveToFile Path,2
  142.   oFileStream.Close
  143.   Set oFileStream = Nothing 
  144. End Function
  145.  
  146. '取得文件数据
  147. Public Function FileData
  148.   oUpFileStream.Position = FileStart
  149.   FileData = oUpFileStream.Read (FileSize)
  150. End Function
  151. End Class
  152. %>
  153. <%
  154. const upload_type=0   '上传方法:0=无惧无组件上传类,1=FSO上传 2=lyfupload,3=aspupload,4=chinaaspupload
  155. const SaveUpFilesPath="tupian"
  156. const UpFileType="jpg|gif"
  157. const EnableUploadFile="Yes"
  158. const MaxFileSize=2048
  159. dim upload,oFile,formName,SavePath,filename,fileExt,oFileSize
  160. dim EnableUpload
  161. dim arrUpFileType
  162. dim ranNum
  163. dim msg,FoundErr
  164. msg=""
  165. FoundErr=false
  166. EnableUpload=false
  167. SavePath = SaveUpFilesPath   '存放上传文件的目录
  168. if right(SavePath,1)<>"/" then SavePath=SavePath&"/" '在目录后加(/)
  169. chkpost=false
  170. server_v1=Cstr(Request.ServerVariables("HTTP_REFERER"))
  171. server_v2=Cstr(Request.ServerVariables("SERVER_NAME"))
  172. if mid(server_v1,8,len(server_v2))<>server_v2 then
  173. chkpost=false
  174. else
  175. chkpost=true
  176. end if
  177. if chkpost=false then%>
  178. 小子!你想干嘛?不要黑我的程序啊!
  179. <%
  180. response.end
  181. end if
  182. %>
  183. <html>
  184. <head>
  185. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  186. <style type="text/css">
  187. <!--
  188. body {
  189. background-color: #e1f4ee;
  190. }
  191. body,td,th {
  192. font-size: 9pt;
  193. }
  194. -->
  195. </style></head>
  196. <body leftmargin="2" topmargin="5" marginwidth="0" marginheight="0">
  197. <%
  198. if EnableUploadFile="No" then
  199. response.write "系统未开放文件上传功能"
  200. else
  201. if session("AdminName")="AdminName" then
  202. response.Write("请登录后再使用本功能!")
  203. else
  204. select case upload_type
  205. case 0
  206. call upload_0()  '使用化境无组件上传类
  207. case else
  208. 'response.write "本系统未开放插件功能"
  209. 'response.end
  210. end select
  211. end if
  212. end if
  213. %>
  214. </body>
  215. </html>
  216. <%
  217. sub upload_0()    '使用化境无组件上传类
  218. set upload=new upfile_class ''建立上传对象
  219. upload.GetData(104857600)   '取得上传数据,限制最大上传100M
  220. if upload.err > 0 then  '如果出错
  221. select case upload.err
  222. case 1
  223. response.write "请先选择你要上传的文件!"
  224. case 2
  225. response.write "你上传的文件总大小超出了最大限制(100M)"
  226. end select
  227. response.end
  228. end if
  229. for each formName in upload.file '列出所有上传了的文件
  230. set ofile=upload.file(formName)  '生成一个文件对象
  231. oFileSize=ofile.filesize
  232. if oFileSize<100 then
  233. msg="请先选择你要上传的文件!"
  234. FoundErr=True
  235. elseif ofilesize>(MaxFileSize*1024) then
  236.   msg="文件大小超过了限制,最大只能上传" & CStr(MaxFileSize) & "K的文件!"
  237. FoundErr=true
  238. end if
  239. fileExt=lcase(ofile.FileExt)
  240. arrUpFileType=split(UpFileType,"|")
  241. for i=0 to ubound(arrUpFileType)
  242. if fileEXT=trim(arrUpFileType(i)) then
  243. EnableUpload=true
  244. exit for
  245. end if
  246. next
  247. if fileEXT="asp" or fileEXT="asa" or fileEXT="aspx" then
  248. EnableUpload=false
  249. end if
  250. if EnableUpload=false then
  251. msg="这种文件类型不允许上传!nn只允许上传这几种文件类型:" & UpFileType
  252. FoundErr=true
  253. end if
  254. strJS="<SCRIPT language=javascript>" & vbcrlf
  255. if FoundErr<>true then
  256. randomize
  257. ranNum=int(900*rnd)+100
  258. filename=SavePath&year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum&"."&fileExt
  259. ofile.SaveToFile Server.mappath(FileName)   '保存文件
  260. response.write "图片上传成功!"
  261. strJS=strJS & "parent.document.myform.domurl3.value='" & fileName & "';" & vbcrlf
  262. else
  263. strJS=strJS & "alert('" & msg & "');" & vbcrlf
  264.    strJS=strJS & "history.go(-1);" & vbcrlf
  265. end if
  266. strJS=strJS & "</script>" & vbcrlf
  267. response.write strJS
  268. set file=nothing
  269. next
  270. set upload=nothing
  271. end sub
  272. %>
  273. </body>
  274. </html>