ct=1, 2, 3
myct = Split(ct,", ")
myct(0)=1
mtct(1)=2
myct(3)=3
所以在SPLIT中要把空格也用上
你的想法是对的,可是代码写错了。
如:
<input name="abc" type="checkbox" value="a" <% if rs("X") like "a" then responseWrite("checked />") else responseWrite(" />")
end if%>
<input name="abc" type="checkbox" value="b" <% if rs("X") like "b" then responseWrite("checked />") else responseWrite(" />")
end if%>
另外,我们一般的做法是:
<%
strX=replace(rs("X")," ","")
arrX=split(strX)
for i=lbound(arrX) to ubound(arrX)
responsewrite "<input type=""checkbox"" name=""abc"" value="""&arrX(i)&""" checked=""checked"" /> "
next
%>
就可以了。
<input name="Purview" type="checkbox" <%if(rs("Purview")==Purview) then %>checked='checked'<%end if%>
查询语句就是用sql查询语句中用 where purview like '%用户名%'
以上就是关于asp如何把复选框存储的值分离出来全部的内容,包括:asp如何把复选框存储的值分离出来、asp 复选框从数据库里读取内容、Asp中复选框查询及判定等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)