ads.asp
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:3k
源码类别:

家庭/个人应用

开发平台:

ASP/ASPX

  1. <!--#include file="articleconn.asp"-->
  2. <!--#include file="security.asp"-->
  3. <!--#include file="../checkpost.asp"-->
  4. <!--#include file="inc/function.asp"-->
  5. <%if session("flag")>1 then
  6.     response.write "<script>alert('您的操作权限不够!');history.back();</script>"
  7.     response.end
  8. end if
  9. %>
  10. <html>
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  13. <title>广告管理</title>
  14. <link href="inc/Admin_STYLE.CSS" rel="stylesheet" type="text/css">
  15. <style type="text/css">
  16. <!--
  17. .样式1 {color: #000000}
  18. -->
  19. </style>
  20. </head>
  21. <%
  22. dim rs
  23. dim sql
  24. dim count
  25. set rs=server.createobject("adodb.recordset")
  26. sql = "select * from indexad"
  27. rs.open sql,conn,1,1
  28. %>
  29. <body>
  30. <p align="center">&nbsp;</p>
  31. <form method="POST" action="savead1.asp?action=add">
  32.   <div align="center"><br>
  33.     <table cellpadding="2" cellspacing="1" border="0" width="90%" class="border" align=center>
  34.       <tr align="center" bgcolor="#429AEF"> 
  35.         <td height=25 colspan=2 ><strong><font color="#FFFFFF">广告位管理</font></strong> 
  36.       <tr> 
  37.         <td width="24%"  class="tdbg" height=23><div align="center">首页广告:</div></td>
  38.         <td width="76%" class="tdbg"><font color="#00FFFF"><font color="#FFFFFF"> 
  39.           <textarea rows="4" name="upad" cols="50"><%=rs("upad")%></textarea>
  40.           </font></font></td>
  41.       </tr>
  42.       <tr> 
  43.         <td width="24%" class="tdbg" height=23><div align="center">播放页一号广告:</div></td>
  44.         <td width="76%" class="tdbg"><font color="#00FFFF"> 
  45.           <textarea rows="4" name="centerad" cols="50"><%=rs("centerad")%></textarea>
  46.         </font>          <span class="样式1"> 如不开广告插件默认为播放页广告
  47.           </span> </td>
  48.       </tr>
  49.       <tr> 
  50.         <td class="tdbg" height=23><div align="center">播放页二号广告:</div></td>
  51.         <td class="tdbg"><font color="#00FFFF"><font color="#FFFFFF"> 
  52.           <textarea rows="4" name="upad2" cols="50"><%=rs("upad2")%></textarea>
  53.           </font><font color="#00FFFF"><font color="#FFFFFF"></font></font></font></td>
  54.       </tr>
  55.       <tr> 
  56.         <td width="24%" class="tdbg" height=23><div align="center">播放页三号广告:</div></td>
  57.         <td width="76%" class="tdbg"><font color="#00FFFF"><font color="#FFFFFF"> 
  58.           <textarea rows="4" name="downad" cols="50"><%=rs("downad")%></textarea>
  59.           <font color="#00FFFF"></font></font></font></td>
  60.       </tr>
  61.     </table>
  62.     <br>
  63.     <font color="#00FFFF"> <br>
  64.     <input type="submit" name="cmdok" value="确 定">
  65.       
  66.     <input type="reset" name="Submit2" value="重 执" class="bt">
  67.     </font></div>
  68. </form>
  69. </body>
  70. <%
  71.  rs.close
  72. set rs = nothing
  73. conn.Close
  74. set conn = nothing
  75. %>
  76. </html>