vote_script.asp
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

ASP/ASPX

  1. <!--#include file="vote_conn.asp"-->
  2. <%
  3. set rs=server.createobject("adodb.recordset")
  4. if request("id")="" then
  5. set rs=conn.execute("select top 1 * from class order by id desc")
  6. else
  7. set rs=conn.execute("select * from class where id="&request("id"))
  8. end if
  9. title=rs("title")
  10. style=rs("style")
  11. classid=rs("id")
  12. rs.close
  13. sql="select * from vote where class="&classid
  14. rs.open sql,conn,3,1
  15. %>
  16. vote=""
  17. vote=vote+"<form method='POST' target='_blank' action='vote/vote_tou.asp?classid=<%=classid%>&style=<%=style%>'>"
  18. vote=vote+"<table border='0' width='100%' cellspacing='0' cellpadding='0'>"
  19. vote=vote+"<tr>"
  20. vote=vote+"<td width='100%' height='40'>"
  21. vote=vote+"<p align='left'><%=title%></td>"
  22. vote=vote+"</tr>"
  23. vote=vote+"<tr>"
  24. vote=vote+"<td width='100%'>"
  25. vote=vote+"<div align='center'>"
  26. vote=vote+"<center>"
  27. vote=vote+"<table border='0' width='90%' cellspacing='0' cellpadding='0'>"
  28. <%do while not rs.eof%>
  29. vote=vote+"<tr>"
  30. vote=vote+"<td width='100%' height='20'><input type='<%=style%>' name='voted' value='<%=rs("id")%>'><font color=black><%=rs("vote")%></font></td>"
  31. vote=vote+"</tr>"
  32. <%rs.movenext
  33. loop%>
  34. vote=vote+"</table>"
  35. vote=vote+"</center>"
  36. vote=vote+"</div>"
  37. vote=vote+"</td>"
  38. vote=vote+"</tr>"
  39. vote=vote+"<tr>"
  40. vote=vote+"<td width='100%' valign='bottom' align='center' height='45'><input type='image' src='../../Img/sub1.gif' border='0'><a href='#' onclick=window.open('vote/vote_show.asp?classid=<%=classid%>','','width=450,height=150,resizable=1,scrollbars=1');><img src='../../Img/sub2.gif' border='0' align='absmiddle'></a></td>"
  41. vote=vote+"</tr>"
  42. vote=vote+"</table></form>"
  43. <%rs.close
  44. set rs=nothing
  45. conn.close
  46. set conn=nothing%>
  47. document.write (vote)