|
<html>
<head>
<title>练习</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
</head>
<body>
<%
if request.querystring("query")<>"test" then
%>
<form action="?query=test" method="post" enctype="multipart/form-data" name="form1" id="form1">
<input type="file" name="file">
<input type="submit" name="submit" value="提交">
</form>
<%
else
response.contenttype="image/gif" '设置输出类型为图像
data=request.binaryread(request.totalbytes) '获取客户端转送的所有数据
tcrlf=chrb(13)&chrb(10) '回车符号代码
flag=leftb(data,instrb(data,tcrlf)-1) '获取图像数据结构标志
datastart=instrb(data,tcrlf& tcrlf)+4 '获取图像数据开始位置
datalength=instrb(datastart+1,data,flag)-datastart'获取图像数据长度
response.binarywrite midb(data,datastart,datalength) '输出图像
end if
%>
</body>
</html>
<html>
上面程序运行后出现下面代码,我是初学者,希望哪位高手可以给详细讲解下!!!
<head>
<title>练习</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
</head>
<body> |
|