ASP中,判断checkbox是否选择,用什么语句?
ASP中,判断checkbox是否选择,以下是我编的语句,我想要的效果是:如果checkbox选择了,就输出“复选框已选择”,大家帮忙看看下面的语句哪有问题,实现不了,谢...
ASP中,判断checkbox是否选择,以下是我编的语句,我想要的效果是:如果checkbox选择了,就输出“复选框已选择”,大家帮忙看看下面的语句哪有问题,实现不了,谢谢!!
<%
if mm=1 then
mm=0
txt1=request("txt1")
if txt1=1 then
response.Write "复选框已选择"
end if
end if
%>
<form method="post">
<input name="txt1" type="checkbox"/>
<input name="bb" type="submit" value="提交">
<input name="mm" type="hidden" value="1">
</form> 展开
<%
if mm=1 then
mm=0
txt1=request("txt1")
if txt1=1 then
response.Write "复选框已选择"
end if
end if
%>
<form method="post">
<input name="txt1" type="checkbox"/>
<input name="bb" type="submit" value="提交">
<input name="mm" type="hidden" value="1">
</form> 展开
展开全部
不用隐藏域,复制下面的代码就可以实现:
<%
if request.QueryString("Action") = "Show" then
if request.Form("txt1") = 1 then
response.Write "复选框已经被选中"
Else
response.Write "<font color=""#FF0000"">复选框没有被选中!</font>"
end if
end if
%>
<form action="?Action=Show" method="post" name="form1" id="form1">
<input name="txt1" type="checkbox" value="1"/>
<input name="bb" type="submit" value="提交">
</form>
<%
if request.QueryString("Action") = "Show" then
if request.Form("txt1") = 1 then
response.Write "复选框已经被选中"
Else
response.Write "<font color=""#FF0000"">复选框没有被选中!</font>"
end if
end if
%>
<form action="?Action=Show" method="post" name="form1" id="form1">
<input name="txt1" type="checkbox" value="1"/>
<input name="bb" type="submit" value="提交">
</form>
展开全部
哥们你写错了OK! 第一个表单获取在ASP用的是request.form("表单元素")
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
CheckBoxList1里面有4个选择,都没打钩,提示打钩,如何判断,写具体点谢谢 for(int i=0;i
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询