新微赢技术网

标题: 关于asp的一个问题 [打印本页]

作者: 冰rose冰    时间: 2010-1-12 01:16
标题: 关于asp的一个问题
<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>
作者: 冷冷DI草    时间: 2010-1-12 01:17
检查服务器上asp是否运行。




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2