asp Request.QueryString 和 Request.Form实例
asp教程 Request.QueryString 和 Request.Form实例
Request.QueryString是获取url传值
Request.Form 是获取表单 method="post" 方法传值
Request.Form实例
功能:用于搜集使用 "post" 方法的表单中的值。
<form name="form1" method="post" action="">
<label>
<input type="text" name="uid" value="这是form表单">
</label>
<label>
<input type="submit" name="Submit" value="提交">
</label>
</form>
<%
uid = request.form("uid")
response.write(uid)
%>
输出:这是form表单
Request.QueryString实例
说明:
Request.QueryString 获取出现在浏览器的地址栏
http://www.zzzyk.com/a.php教程?uid=zhaoxi
<%
uid = request.querystring("uid")
response.write(uid)
%>
输出值:zhaoxi
注明:本教程原创于www.zzzyk.com转载注明出处
补充:asp教程,ASP入门