📄 upfilem.asp
字号:
<!--#include file="upload.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=true
SavePath=Server.MapPath(".") '存放上传文件的目录
SavePath=Replace(SavePath,"HtmlEdit","UpImg")
if right(SavePath,1)<>"\" then SavePath=SavePath&"\" '在目录后加(\)
%>
<%
MaxFileSize =1000
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="ziyan/Style.css" rel="stylesheet" type="text/css">
</head>
<body class="snail1"><iframe height=0></iframe>
<%
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>(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="jpg" or fileEXT="gif" or fileEXT="png" or fileEXT="bmp" then
EnableUpload=true
Else
EnableUpload=false
End if
if EnableUpload=false then
'msg="这种文件类型不允许上传!\n\n只允许上传这几种文件类型:" & UpFileType
response.write"<SCRIPT language=JavaScript>alert('这种文件类型不允许上传!');"
response.write"javascript:history.go(-1)</SCRIPT>"
founderr=true
end if
strJS="<SCRIPT language=javascript>" & vbcrlf
if founderr<>true then
randomize
ranNum=int(900*rnd)+100
url2=year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum&"."&fileExt
filename=SavePath&url2
file.SaveToFile FileName '保存文件
msg="上传文件成功!"
Url = "../UpImg/"&url2
strJS=strJS & "parent.HtmlEdit.focus();" & vbcrlf
strJS=strJS & "var range = parent.HtmlEdit.document.selection.createRange();" & vbcrlf
FileType=right(fileExt,3)
select case FileType
case "jpg","gif","png","bmp"
strJS=strJS & "range.pasteHTML('<img src="&Url&" width=300 height=250 align=left></img><br>');" & vbcrlf
case "swf"
'strJS=strJS & "range.pasteHTML('<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0>"
'strJS=strJS & "<param name=movie value=../" & FileName & ">"
'strJS=strJS & "<param name=quality value=high>"
'strJS=strJS & "<embed src=" & FileName & " quality=high pluginspage=http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash type=application/x-shockwave-flash>"
'strJS=strJS & "</embed></object>');" & vbcrlf
case else
strJS=strJS & "range.text='[upload=" & FileType & "]" & FileName & "[/upload]';" & vbcrlf
end select
end if
'操作返回上传文件名到upfilename控件
strJS=strJS & "parent.parent.document.myform.upfilename.value=parent.parent.document.myform.upfilename.value+'|"&url2&"';" & vbcrlf
strJS=strJS & "alert('" & msg & "');" & vbcrlf
strJS=strJS & "history.go(-1);" & vbcrlf
strJS=strJS & "parent.HtmlEdit.focus();" & 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 + -