⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 upfile.asp

📁 二手程序,可是实现会员的等级功能管理,会员可以有上船图片,给信息标题加颜色功能!
💻 ASP
字号:
<!--#include file="conn.asp"-->
<!--#include file="usercookies.asp"-->
<%Server.ScriptTimeOut=5000%>
<!--#include file = "ijob.inc"-->
<%
dim upload,file,formElement,formFile,iCount,fileExt,id,username,formPath,rs,sql,filename
iCount=0
username=request.cookies("ijob")("username")
set upload = new sjCat_Upload
Set file = upload.file("file1")
 id=upload.form("id")
 if file.filesize<1 then
 	response.write "<font size=2>请先选择你要上传的图片 [ <a href=# onclick=history.go(-1)>重新上传</a> ]</font>"
	response.end
 end if
 fileExt=lcase(right(file.filename,4))
 if fileEXT<>".gif" and fileEXT<>".jpg" then
 	response.write "<font size=2>文件格式不对 [ <a href=# onclick=history.go(-1)>重新上传</a> ]</font>"
	response.end
 end if
 if file.filesize>102400 then '这是100K的图片大小数据
 	response.write "<font size=2>图片大小超过了限制 [ <a href=# onclick=history.go(-1)>重新上传</a> ]</font>"
	response.end
 end if
 filename=formPath&year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&fileExt
if file.FileSize>0 then
    file.Save2File Server.mappath("uptupian") & "\" & FileName  
	iCount=iCount+1
end if
set file=nothing
set upload=nothing

set rs=server.createobject("adodb.recordset")
sql = "select tupian from xinxi where username='"&username&"' and id="&cstr(id)
rs.open sql,conn,1,3
if rs.eof then
response.write "参数错误!"
response.end
else
rs("tupian")=filename
rs.update
end if
rs.close
set rs=nothing
closedb
response.write "图片成功上传!"
response.write "<meta http-equiv=refresh content=""1;URL=user_xxgl.asp"">"
%><br>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -