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

📄 size_upload.asp

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

<HTML>
<BODY>

<%

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

' Capture and save uploaded image
Upload.Save "c:\upload"

For Each File in Upload.Files
	If File.ImageType = "UNKNOWN" Then
		Response.Write "This is now an image."
		Response.End
	End If

	Response.Write File.Path & "<BR>"
	Response.Write "Type: " & File.ImageType & "<BR>"
	Response.Write "Size: " & File.ImageWidth & " x " & File.ImageHeight & " pixels"

Next
%>

</BODY>
</HTML>

⌨️ 快捷键说明

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