《支持中文的无组件文件上传》-- 示例
类别: ASP教程
关键词:ASP, 组件Components
文件:uploadtest.asp
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF">
<form method="post" name="form1" enctype="multipart/form-data" action="showdata.asp">
<p>text1:
<input type="text" name="text1">
</p>
<p>text2:
<input type="text" name="text2">
</p>
<p>txtarea:
<textarea name="textfield" cols="20" rows="10"></textarea>
</p>
<p>file:
<input type="file" name="newfile">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Reset" value="Reset">
</p>
</form>
</body>
</html>
文件:showdata.asp
<!--#INCLUDE FILE="upload.inc"-->
<%
\'Fields("xxx").Name 取得Form中xxx(Form Object)的名字
\'Fields("xxx").FilePath 如果是file Object 取得文件的完整路径
\'Fields("xxx").FileName 如果是file Object 取得文件名
\'Fields("xxx").ContentType 如果是file Object 取得文件的类型
\'Fields("xxx").Length 取得Form中xxx(Form Object)的数据长度
\'Fields("xxx").Value 取得Form中xxx(Form Object)的数据内容
Dim FormData,FormSize
FormSize=Request.TotalBytes
FormData=Request.BinaryRead(FormSize)
Set Fields = GetUpload(FormData)
response.write "text1:" & Fields("text1").Value & "<br>" & VbCrLf
response.write "text2:" & Fields("text2").Value & "<br>" & VbCrLf
response.write "textarea:" & Fields("textfield").Value & "<br>" & VbCrLf
response.write Fields("newfile").FileName
response.write Fields("newfile").ContentType
Response.ContentType = Fields("newfile").ContentType
If Fields("newfile").FileName<>"" Then
Response.ContentType = Fields("newfile").ContentType
response.binarywrite Fields("newfile").Value
End If
\'Response.BinaryWrite FormData
%>
文件:uploadtest.asp
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF">
<form method="post" name="form1" enctype="multipart/form-data" action="showdata.asp">
<p>text1:
<input type="text" name="text1">
</p>
<p>text2:
<input type="text" name="text2">
</p>
<p>txtarea:
<textarea name="textfield" cols="20" rows="10"></textarea>
</p>
<p>file:
<input type="file" name="newfile">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Reset" value="Reset">
</p>
</form>
</body>
</html>
文件:showdata.asp
<!--#INCLUDE FILE="upload.inc"-->
<%
\'Fields("xxx").Name 取得Form中xxx(Form Object)的名字
\'Fields("xxx").FilePath 如果是file Object 取得文件的完整路径
\'Fields("xxx").FileName 如果是file Object 取得文件名
\'Fields("xxx").ContentType 如果是file Object 取得文件的类型
\'Fields("xxx").Length 取得Form中xxx(Form Object)的数据长度
\'Fields("xxx").Value 取得Form中xxx(Form Object)的数据内容
Dim FormData,FormSize
FormSize=Request.TotalBytes
FormData=Request.BinaryRead(FormSize)
Set Fields = GetUpload(FormData)
response.write "text1:" & Fields("text1").Value & "<br>" & VbCrLf
response.write "text2:" & Fields("text2").Value & "<br>" & VbCrLf
response.write "textarea:" & Fields("textfield").Value & "<br>" & VbCrLf
response.write Fields("newfile").FileName
response.write Fields("newfile").ContentType
Response.ContentType = Fields("newfile").ContentType
If Fields("newfile").FileName<>"" Then
Response.ContentType = Fields("newfile").ContentType
response.binarywrite Fields("newfile").Value
End If
\'Response.BinaryWrite FormData
%>
- 上一篇: 《支持中文的无组件文件上传》-- UPLOAD.INC
- 下一篇: 用ASP做一个分页程序
-= 资 源 教 程 =-
文 章 搜 索