确定复选框是否已选中

确定复选框是否已选中

本文介绍了确定复选框是否已选中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好

Hi all

How to Determine whether a checbox is checked or not in classic ASP?

推荐答案


<form method="POST" action="" name="myform">

<p><input type="checkbox" name="R1" value="V1">1</p>
<p><input type="checkbox" name="R1" value="V2" >2</p>
<p><input type="checkbox" name="R1" value="V3">3</p>
<p><input type="submit" value="submit" name="B1" ></p>
</form>
</body>
</html>

<%
rc = Request.Form("R1").Count
for i = 1 to rc
rv = Request.Form("R1")(i)
if rv = "V2" then
'V2 is selected
exit for
end if
next
%>


这篇关于确定复选框是否已选中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-14 04:31