请问button 提交状态问题
case "sta"id = request("hid")
sta = request("sta")
response.write id&"aaaaaaaaaaaaaaaaaaaaa"
'response.end
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from CisRegUser where id="&id,conn,1,3
rs("status") = Cint(sta)
rs.update
CLOSEDB
<form id="form1" name="form1" method="post" action="list.asp">
<input type="button" name="sta" value="确认有效" style="font-size:12px" onclick="ck(<%=rs("id")%>)" >
<input type="button" name="sta2" value="已拨打" style="font-size:12px" onclick="ck2(<%=rs("id")%>)">
<input type="button" value="修改" style="font-size:12px" onclick="show(<%=rs("id")%>)">
<input name="hid" type="" id="hid" value="<%=rs("id")%>" />
<input name="action" type="" id="action" value="sta" />
</form>
我怎么把状态存入数据库呢?