先申明一下:下面这程序是对的!
<form action="delete.asp" method="post">
<table width="80%">
<%
set conn=server.CreateObject("adodb.connection")
conn.connectionstring="provider=microsoft.jet.oledb.4.0;data source="&server.MapPath("news.mdb")
conn.open
sql="select * from news order by news_time desc"
set rs=conn.execute(sql)
if not rs.bof then
rs.movefirst
end if
do while not rs.eof
%>
<tr ><td width="20%" bgcolor="#ebebeb" align="center">是否删除:<input type="checkbox" name=<%=rs("news_id")%>></td>
<td bgcolor="#ebebeb" width="15%"><%=rs("news_type")%></td><td bgcolor="#ebebeb" width="65%"><%=rs("news_title")%></td></tr>
<%
rs.movenext
loop
%>
<tr><td width="100%" colspan="3" bgcolor="#ebebeb" align="center"><center><p>
<input type="submit" value="删除" name="b1">
<input type="reset" value="清除" name="b2">
</center></td></tr></table></form>
请问一下上面用红色写的程序为什么不能改写成:
for i=1 to rs.recordcount
next
还有请问一下这个对应的asp程序应该怎么写!(也就是选中复选框,点击“删除”,就能把数据库中对应的删除!)checkbox我不太会用,所以问大家一下!
谢谢!