如果是字符串类型:
if request("xinxi")= "1" then
rs("xinxi")="1"
else
rs("xinxi")="0"
end if
如果是数值型:
if request("xinxi")= "1" then
rs("xinxi")=1
else
rs("xinxi")=0
end if
注意换行!
1.asp<form id="form1" name="form1" method="post" action="tj.asp">
<label>
<input type="checkbox" name="checkbox" value="测试1" />
测试1<br />
</label>
<label>
<input type="checkbox" name="checkbox" value="测试2" />
</label>
测试
<p>
<label>
<input type="submit" name="Submit" value="提交" />
</label>
</p>
</form>
tj.asp
<!--#include file="conn.asp"-->
<%
checkbox=request.Form("checkbox")
sql="select * from pro "
rs.open sql,conn,3,2
rs.addnew
rs("checkbox")=checkbox
rs.update
rs.close
set conn=nothing
%>
<script>alert('添加成功!')location.href='1.asp'</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)