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

📄 unicode_upload.asp

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


<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
</HEAD>
<BODY>

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

	' Enable UTF-8 translation
	Upload.CodePage = 65001
	
	Upload.Save "c:\upload"
%>  

Files:<BR> 

<%  
For Each File in Upload.Files
	Response.Write File.Name & "= " & Server.HTMLEncode(File.Path) & " (" & File.Size &" bytes)<BR>"
Next
%>

<P>  

Other items:<BR>  
<%  
For Each Item in Upload.Form
	Response.Write Item.Name & "= " & Server.HTMLEncode(Item.Value) & "<BR>"
Next
%>  

</BODY>
</HTML>

⌨️ 快捷键说明

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