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

📄 uploadscript4.asp

📁 aspupload
💻 ASP
字号:
<!-- AspUpload Code samples: UploadScript4.asp -->
<!-- Invoked by Form4.asp -->
<!-- Copyright (c) 2001 Persits Software, Inc. -->
<!-- http://www.persits.com -->


<HTML>
<BODY>

<%
Set Upload = Server.CreateObject("Persits.Upload") 

' Limit file size to 50000 bytes, throw an exception if file is larger
Upload.SetMaxSize 50000, True 


' Intercept all exceptions to display user-friendly error
On Error Resume Next 

' Perform upload
Upload.Save "c:\upload" 

' 8 is the number of "File too large" exception
If Err.Number = 8 Then 
   Response.Write "Your file is too large. Please try again." 
Else 
   If Err <> 0 Then 
      Response.Write "An error occurred: " & Err.Description 
   Else 
      Response.Write "Success!" 
   End If 
End If 

%> 
  

</BODY>
</HTML>

⌨️ 快捷键说明

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