vote_C_label.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:3k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_Inc/Function.asp"-->
  4. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  5. <!--#include file="../../FS_InterFace/NS_Function.asp" -->
  6. <!--#include file="../../FS_Inc/Func_page.asp" -->
  7. <%
  8. Response.Buffer = True
  9. Response.Expires = -1
  10. Response.ExpiresAbsolute = Now() - 1
  11. Response.Expires = 0
  12. Response.CacheControl = "no-cache"
  13. Dim Conn
  14. MF_Default_Conn
  15. 'session判断
  16. MF_Session_TF 
  17. if not MF_Check_Pop_TF("MF_sPublic") then Err_Show
  18. %>
  19. <html>
  20. <head>
  21. <title>新闻标签管理</title>
  22. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  23. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  24. <base target=self>
  25. </head>
  26. <body class="hback">
  27. <script language="JavaScript" src="../../FS_Inc/PublicJS.js" type="text/JavaScript"></script>
  28.   <form  name="form1" method="post">
  29.   <table width="98%" height="29" border="0" align=center cellpadding="3" cellspacing="1" class="table" valign=absmiddle>
  30.     <tr class="hback" > 
  31.       <td height="27"  align="Left" class="xingmu"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
  32.           <tr> 
  33.             <td width="41%" class="xingmu"><strong>投票标签创建</strong></td>
  34.             <td width="59%"><div align="right"> 
  35.                 <input name="button4" type="button" onClick="window.returnValue='';window.close();" value="关闭">
  36.             </div></td>
  37.           </tr>
  38.         </table></td>
  39.     </tr>
  40.   </table>
  41.  <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  42.     
  43.     <tr>
  44.       <td width="19%" class="hback"><div align="right">选择栏目</div></td>
  45.       <td width="81%" class="hback">
  46.    <select name="TID" id="TID">
  47. <%
  48. Dim rs
  49. set rs = Conn.execute("select TID,Theme From FS_VS_Theme order by TID desc")
  50. do while not rs.eof
  51. if len(rs("Theme"))>20 then
  52. response.Write "<option value="""&rs("TID")&""">"&left(rs("Theme"),20)&"...</option>"
  53. else
  54. response.Write "<option value="""&rs("TID")&""">"&rs("Theme")&"</option>"
  55. end if
  56. rs.movenext
  57. loop
  58. rs.close:set rs = nothing
  59. %>
  60.             </select> </td>
  61.     </tr>
  62.     <tr>
  63.       <td class="hback"><div align="right">投票SPIN ID </div></td>
  64.       <td class="hback"><label>
  65.         <input name="spanid" type="text" id="spanid" value="Vote_HTML_ID">
  66.       如果你要在一个页面调用多个投票,请把ID设置为不同</label></td>
  67.     </tr>
  68.     <tr>
  69.       <td class="hback"><div align="right">图片宽度</div></td>
  70.       <td class="hback"><label>
  71.         <input name="PicWidth" type="text" id="PicWidth" value="100">
  72.       如果投票中有图片,此项有效</label></td>
  73.     </tr>
  74.     <tr>
  75.       <td class="hback"><div align="right"></div></td>
  76.       <td class="hback"><input name="button" type="button" onClick="ok(this.form);" value="确定创建此标签">
  77.         <input name="button" type="button" onClick="window.returnValue='';window.close();" value=" 取 消 "></td>
  78.     </tr>
  79.   </table>
  80. <label></label>
  81. <script language="JavaScript" type="text/JavaScript">
  82. function ok(obj)
  83. {
  84. var retV = '{FS:VS=VSLIST┆';
  85. retV+='投票项$' + obj.TID.value+'┆';
  86. retV+='图片宽度$' + obj.PicWidth.value+'┆';
  87. retV+='SpanId$' + obj.spanid.value;
  88. retV+='}';
  89. window.parent.returnValue = retV;
  90. window.close();
  91. }
  92. </script>
  93.  </form>
  94. </body>
  95. </html>