实在想不到了 怎么获得**********下面表单投票的值 使数据库piao加1
<html>
<head>
<title>投票结果</title>
</head>
<body>
<%
set conn=server.createobject("adodb.connection")
strconnect="provider=Microsoft.Jet.OLEDB.4.0;Data Source='C:\Inetpub\wwwroot\toupiaox/user.mdb'"
conn.open strconnect
if request.querystring("submit")="投票" then
id=request.form("elect")
Set Rss = Server.CreateObject("ADODB.Recordset")
sql="select * from mingxing where id=' "& id & "'"
'sql="select * from mingxing where id="&id
rss.open sql,conn,1,3
rss("piao")=rss("piao")+1
rss.update
rss.close
set rss=nothing
end if
%>
<p align="center" style="margin-top:10">
<font size="5">投票成功!</font>
<br><br><br><br><br><br>
<a href="index.asp">返回</a>
</body>
</html>
*************************************************************
<form action="toupiao.asp" method="post" name="form1">
<table align="center">
<tr>
<td>
<th align="left">
<input name="elect" type="radio" value="&rs("id")&">
<%=rs("username")%></th></td>
<td><%=rs("piao")%></td>
</tr>
<%
counts=counts-1
rs.movenext
if rs.eof then exit do
loop
end if
%>
</table>
<p align="center">
<input type="submit" value="投票" name="submit">
</P>
</form>