📄 upprofile.asp
字号:
<!--#include FILE="upload.inc"-->
<%OPTION EXPLICIT%>
<%
dim upload,file,formName,formPath,iCount
set upload=new upload_5xSoft ''建立上传对象
formPath="images/" '上传路径'
set file=upload.file("Filedata") ''生成一个文件对象
if file.FileSize>0 then ''如果 FileSize > 0 说明有文件数据
file.SaveAs Server.mappath(formPath&file.FileName) ''保存文件
end if
set file=nothing
set upload=nothing ''删除此对象
response.end
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -