问题描述
asp页面怎么显示和修改复选框数据
解决方案
解决方案二:
ifrs("sign")=1thenresponse.write"<inputtype=checkboxname=chkvalue='<%=rs("id")%>'checked='checked'>"elseresponse.write"<inputtype=checkboxname=chkvalue='<%=rs("id")%>'>"endif取得value值如果批量使用split分割进行操作数据
解决方案三:
说说你的解决思路
解决方案四:
我的是复选框,不是单选,里面有很多值,且值都不一样
解决方案五:
把你的具体题目说出来
解决方案六:
员工表workeridnamesexteladdmemo项目表khxmidxm_namenumuersPriceworkermemo其中khxm表中worker关联worker表的id,且是个多项选择值添加是没问题,可以后台要修改时显示麻烦了,要在之前已选择的员上前是打勾,没选的就不打勾
解决方案七:
<%a=RS("czy")a=Split(a,",")Functioncheck(temp)check=""ForI=0ToUBound(a)iftemp=a(I)Thencheck="checked"EndifNextEndFunction%><%setrs1=server.CreateObject("adodb.recordset")sql1="select*fromyuangong"rs1.opensql,conn,1,1dowhilenotrs1.eofids=rs1("id")%><inputname="czy"type="checkbox"value="<%=rs1("id")%>"<%=check(ids)%>><%=rs1("yg_name")%><%rs1.movenextlooprs1.closesetrs1=nothing%>就是显示不出勾
解决方案八:
求高手