哪位大侠能帮我解决一个asp的小问题

来源:百度知道 编辑:UC知道 时间:2024/09/22 17:17:05
Request.QueryString("no")<>"eshop"是什么意思

Request.QueryString("no")<>"eshop"
no表什麽参数名,eshop是参数值
'接收的参数名no不等於eshop(楼主这裏应该是判断语句的写法吧)

<a href=x.asp?no=eshop>8888</a>
request.querystring 是用来接收地址里面?后面的no=eshop的内容

就是接收利用"get"方式传递过来的"no" 的值不等于"eshop"
还不明白请加技术群:36403476

<form name="form1" action="a.asp?a=1">
<input name="b" value="1">
</form>

Request.QueryString("a") = 1
Request.Form("b") = 1

明白没?