<%set rst=server.CreateObject("adodb.recordset")
rst.open"select * from notice_jj where tan=1",conn,1,1
if not rst.eof and not rst.bof then%>
<script>
<%for t=1 to rst.recordcount%>
win1<%=t%> = window.open('notice.asp?id=<%=rst("id")%>', 'b', 'toolbar=no,menubar=no,left=200,top=200');
<%rst.movenext
next%>
win2<%=t%> = window.open('notice.asp?id=<%=rst("id")%>', 'b', 'toolbar=no,menubar=no,left=200,top=200');
</script>
<%end if%>
这个为什么总是弹出一个窗口!!?
怎样才能弹出好几个呢
该怎样改?