?? upme4.asp
字號:
<!--#include file="Inc/config4.asp"-->
<!--#include file="Inc/upload.asp"-->
<!--#include file=include/conn.asp -->
<!--#include file="admin/chkuser.asp" -->
<!--#include file=include/config.asp -->
<%
const upload_type=0 '上傳方法:0=無懼無組件上傳類,1=FSO上傳 2=lyfupload,3=aspupload,4=chinaaspupload
dim upload,file,formName,SavePath,filename,fileExt
dim upNum
dim EnableUpload
dim Forumupload
dim ranNum
dim uploadfiletype
dim msg,founderr
msg=""
founderr=false
EnableUpload=false
SavePath = "uploadfile" '存放上傳文件的目錄
if right(SavePath,1)<>"/" then SavePath=SavePath&"/" '在目錄后加(/)
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<%
select case upload_type
case 0
call upload_0() '使用化境無組件上傳類
case else
'response.write "本系統未開放插件功能"
'response.end
end select
%>
</body>
</html>
<%
sub upload_0() '使用化境無組件上傳類
set upload=new upload_file '建立上傳對象
for each formName in upload.file '列出所有上傳了的文件
set file=upload.file(formName) '生成一個文件對象
if file.filesize<100 then
msg="請先選擇你要上傳的文件!"
founderr=true
end if
if file.filesize>(MaxFileSize*1024) then
msg="文件大小超過了限制,最大只能上傳" & CStr(MaxFileSize) & "K的文件!"
founderr=true
end if
fileExt=lcase(file.FileExt)
Forumupload=split(UpFileType,"|")
for i=0 to ubound(Forumupload)
if fileEXT=trim(Forumupload(i)) then
EnableUpload=true
exit for
end if
next
if fileEXT="asp" or fileEXT="asa" or fileEXT="aspx" then
EnableUpload=false
end if
if EnableUpload=false then
msg="這種文件類型不允許上傳!\n\n只允許上傳這幾種文件類型:" & UpFileType
founderr=true
end if
strJS="<SCRIPT language=javascript>" & vbcrlf
if founderr<>true then
randomize
ranNum=int(900*rnd)+100
filename=SavePath&year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum&"."&fileExt
file.SaveToFile Server.mappath(FileName) '保存文件
filename1=year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum&"."&fileExt
set rs=server.createobject("adodb.recordset")
sql="select * from uploadpic"
rs.open sql,conn,1,3
rs.addnew
rs("picname")=filename1
username=request.cookies("username")
rs("username")=username
rs.update
rs.close
set rs=nothing
msg="上傳文件成功!"
strJS=strJS & "content=parent.document.rm.r.value;"
FileType=right(fileExt,3)
select case FileType
case "jpg","gif","png","bmp"
strJS=strJS &"content=content+'<img src=" & filename & " align=left>';" & vbcrlf
case "mht"
strJS=strJS & "content=content+'<iframe src=" & filename & " width=640 height=400>';" & vbcrlf
case "swf"
strJS=strJS & "content=content+'" & filename & "';" & vbcrlf
case "rm","ram"
strJS=strJS & "content=content+'" & filename & "';" & vbcrlf
end select
strJS=strJS & "parent.document.rm.r.value=content;" & vbcrlf
strJS=strJS & "content=parent.document.rm.g.value;"
FileType=right(fileExt,3)
select case FileType
case "jpg","gif","png","bmp"
strJS=strJS &"content=content+'<img src=" & filename1 & " align=left>';" & vbcrlf
case "mht"
strJS=strJS & "content=content+'<iframe src=" & filename1 & " width=640 height=400>';" & vbcrlf
case "swf"
strJS=strJS & "content=content+'" & filename1 & "';" & vbcrlf
case "rm","ram"
strJS=strJS & "content=content+'" & filename & "';" & vbcrlf
end select
strJS=strJS & "parent.document.rm.g.value=content;" & vbcrlf
end if
strJS=strJS & "alert('" & msg & "');" & vbcrlf
strJS=strJS & "window.location = 'upme4.htm';" & vbcrlf
strJS=strJS & "</script>"
response.write strJS
set file=nothing
next
set upload=nothing
end sub
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -