unicode_upload.asp

来自「aspupload」· ASP 代码 · 共 41 行

ASP
41
字号
<!-- 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 + =
减小字号Ctrl + -
显示快捷键?