首先先来看一个简单的asp实例
<%
username = request("username")
Response.write username
%>
这段代码从URL处获得参数username的值,然后显示在页面中。
可见%00之后的内容没有保存到变量中。
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>文件上传</title>
</head>
<body>
<form method="POST" action="SaveFile.asp">
文件上传:<input type="file" name="file" size="42"> <input type="submit" value="提交" name="bb">
</form>
</body>
&