📄 inc_aspupload.asp
字号:
<%
Set objUpload = Server.CreateObject("Persits.Upload.1")
'response.write objUpload.expires
Sub FileUpload(Personalpath)
Personalpath=trim(Personalpath)
strThisDir=Server.mappath(Personalpath)
set FileObject = server.createobject("Scripting.FileSystemObject")
if not FileObject.FolderExists(strThisDir) then
FileObject.CreateFolder strThisDir
end if
set FileObject = nothing
objUpload.Save strThisDir
For each file In objUpload.Files
strFileName=strFileName&","&file.ExtractFileName
next
end Sub
Function EncriptRequest(InputName)
InputName=trim(InputName)
IF InputName="" then
exit Function
end if
EncriptRequest=replace(trim(objUpload.Form(InputName).Value),"'","''")
End Function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -