Ads_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. Dim str_Lable_AdSql,o_Lable_AdRs,str_Ad_TempStr
  19. str_Lable_AdSql="Select AdID,AdName From FS_AD_Info Order by AdID Desc"
  20. Set o_Lable_AdRs=Conn.execute(str_Lable_AdSql)
  21. If Not o_Lable_AdRs.Eof Then
  22. str_Ad_TempStr=""
  23. While Not o_Lable_AdRs.Eof 
  24. str_Ad_TempStr=str_Ad_TempStr&"<option value="&o_Lable_AdRs("AdID")&">"&o_Lable_AdRs("AdName")&"</option>"
  25. o_Lable_AdRs.MoveNext
  26. Wend
  27. Else
  28. str_Ad_TempStr="<option value=""ADNameIsNull"">当前没有广告,请添加广告!</option>"
  29. End If
  30. Set o_Lable_AdRs=Nothing
  31. %>
  32. <html>
  33. <head>
  34. <title>新闻标签管理</title>
  35. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  36. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  37. <base target=self>
  38. </head>
  39. <body class="hback">
  40. <script language="JavaScript" src="../../FS_Inc/PublicJS.js" type="text/JavaScript"></script>
  41. <table width="98%" height="100" border="0" align=center cellpadding="3" cellspacing="1" class="table" valign=absmiddle>
  42.   <form  name="form1" method="post">
  43.     <tr class="hback" > 
  44.       <td colspan="2"  align="Left" class="xingmu"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
  45.           <tr> 
  46.             <td width="49%" class="xingmu"><strong>广告标签创建</strong></td>
  47.             <td width="51%"><div align="right"> 
  48.                 <input name="Wclose" type="button" onClick="window.returnValue='';window.close();" value="关闭">
  49.             </div></td>
  50.           </tr>
  51.         </table></td>
  52.     </tr>
  53.     <tr class="hback" > 
  54.       <td width="28%"  align="right" class="hback"><div align="right">选择广告</div></td>
  55.       <td width="72%"  align="left" class="hback"><select name="AdName" style="width:100%"><%=str_Ad_TempStr%>
  56.       </select>
  57.       </td>
  58.     </tr>
  59.     <tr class="hback" >
  60.       <td  align="right" class="hback"><div align="right">投票SPIN ID </div></td>
  61.       <td  align="left" class="hback"><input name="spanid" type="text" id="spanid" value="Ad_HTML_ID" size="15" maxlength="100">
  62.         (如果你要在一个页面调用多个投票,请把ID设置为不同)</td>
  63.     </tr>
  64.     
  65.     
  66.     
  67.     <tr class="hback" > 
  68.       <td class="hback"  colspan="2" align="center" height="30"> <input name="button" type="button" onClick="ok(this.form);" value="确定创建此标签"> 
  69.         <input name="button" type="button" onClick="window.returnValue='';window.close();" value=" 取 消 ">      </td>
  70.     </tr>
  71.   </form>
  72. </table>
  73. </body>
  74. <% 
  75. Set Conn=nothing
  76. %>
  77. </html>
  78. <script language="JavaScript" type="text/JavaScript">
  79. function ok(obj)
  80. {
  81. var retV;
  82. if (obj.AdName.value=="ADNameIsNull")
  83. {
  84. retV="";
  85. window.parent.returnValue = retV;
  86. window.close();
  87. }
  88. retV= '{FS:Ad=AdLIST┆';
  89. retV+='广告ID$' + obj.AdName.value+'┆';
  90. retV+='SpanId$' + obj.spanid.value;
  91. retV+='}';
  92. window.parent.returnValue = retV;
  93. window.close();
  94. }
  95. </script>
  96. <!-- Powered by: FoosunCMS4.0系列,Company:Foosun Inc. -->