下面是我写的代码```不知道为什么在本机运行不了
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<form name= "form1" method="post" action="">
<input type="text" name="textfield" />
<label>
<input type="submit"name="submit" value="提交" />
</label>
</form><%
response.Write("你使用的浏览器是:" & request.ServerVariables(("HTTP_USER_AGENT") & "<BR>")
response.Write("你的IP地址是:" & request.ServerVariables("REMOTE_ADDR") & "<br>")
response.Write("你访问的网页是:" & request.ServerVariables("URL") & "<br>")
response.Write("你访问的端口是:" & request.ServerVariables("SERVER_port") & "<br>")
response.Write("你的查询字符串是:" & request.ServerVariables("QUERY_STRING") & "<br>")
Response.Write("传送字节数:"& request.TotalBytes) %>
</body>
</html>