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

家庭/个人应用

开发平台:

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. <title>修改影星专辑</title>
  13. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  14. <link rel="stylesheet" type="text/css" href="css/css.css"><style type=text/css>
  15. body  { background:#799AE1; margin:0px; font:9pt 宋体; }
  16. table  { border:0px; }
  17. td  { font:normal 12px 宋体; }
  18. img  { vertical-align:bottom; border:0px; }
  19. a  { font:normal 12px 宋体; color:#000000; text-decoration:none; }
  20. a:hover  { color:#428EFF;text-decoration:underline; }
  21. .sec_menu  { border-left:1px solid white; border-right:1px solid white; border-bottom:1px solid white; overflow:hidden; background:#D6DFF7; }
  22. .menu_title  { }
  23. .menu_title span  { position:relative; top:2px; left:8px; color:#215DC6; font-weight:bold; }
  24. .menu_title2  { }
  25. .menu_title2 span  { position:relative; top:2px; left:8px; color:#428EFF; font-weight:bold; }
  26. </style>
  27. </head>
  28. <body bgcolor="#FFFFFF" text="#000000">
  29. <%
  30. set rs1=server.createobject("adodb.recordset")
  31. sql1="select * from special where id="&request.querystring("id")
  32. rs1.open sql1,conn,3,3
  33. %>
  34. <form name="form1" method="post" action="special_edit_save.asp">
  35.   <p><b><font size="3">修改影星专辑</font></b></p>
  36.     <table width="90%" border="0" height="30" cellspacing="0" cellpadding="0" bgcolor="#CCCCCC" style="border-collapse: collapse" bordercolor="#111111">
  37.       <tr>
  38.       <td height="30" width="100" bgcolor="#EAEAEA" align="center">专辑名称:</td>
  39.       <td height="30" width="400" bgcolor="#EAEAEA"> 
  40.           <input type="text" name="special" size="36" value="<%=rs1("special")%>"></td>
  41.     </tr>
  42.       <tr>
  43.       <td height="30" width="100" bgcolor="#EAEAEA" align="center">影星名称:</td>
  44.       <td height="30" width="400" bgcolor="#EAEAEA"> 
  45.         <input type="text" name="name" size="36" value="<%=rs1("name")%>"></td>
  46.     </tr>
  47.       <tr>
  48.       <td height="30" width="100" bgcolor="#EAEAEA" align="center">图片路径:</td>
  49.       <td height="30" width="400" bgcolor="#EAEAEA">
  50.       <input type="text" name="pic" size="36" value="<%=rs1("pic")%>"></td>
  51.     </tr>
  52.       <tr>
  53.       <td height="30" width="100" bgcolor="#EAEAEA" align="center">点击次数:</td>
  54.       <td height="30" width="400" bgcolor="#EAEAEA"> 
  55.           <input type="text" name="hits" size="12" value="<%=rs1("hits")%>">&nbsp;&nbsp;是否推荐:<select size="1" name="best">
  56.           <option value="<%=rs1("best")%>"><%if rs1("best")=true then%>是<%else%>否<%end if%></option>
  57.           <option value="true">是</option>
  58.           <option value="false">否</option>
  59.           </select></td>
  60.     </tr>
  61.       <tr>
  62.       <td height="30" width="100" bgcolor="#EAEAEA" align="center">专辑介绍:</td>
  63.       <td height="30" width="400" bgcolor="#EAEAEA"> 
  64.           <textarea rows="11" name="special_intro" cols="51"><%
  65.                 content=replace(rs1("special_intro"),"<br>",chr(13))
  66.                 content=replace(content,"&nbsp;"," ")    
  67.             response.write content%></textarea></td>
  68.     </tr>
  69.       <tr>
  70.       <td height="30" width="100" bgcolor="#EAEAEA" align="center">影星介绍:</td>
  71.       <td height="30" width="400" bgcolor="#EAEAEA"> 
  72.           <textarea rows="11" name="name_intro" cols="51"><%
  73.                 content=replace(rs1("name_intro"),"<br>",chr(13))
  74.                 content=replace(content,"&nbsp;"," ")    
  75.             response.write content%></textarea></td>
  76.     </tr>
  77.       <tr>
  78.       <td height="30" width="100" bgcolor="#EAEAEA" align="center"> </td>
  79.       <td height="30" width="400" bgcolor="#EAEAEA"> 
  80.            </td>
  81.     </tr>
  82.   </table>
  83.     <input type=hidden name=id value=<%=rs1("id")%>>
  84.     <input class="form2" type="submit" name="yes" value="确定添加">                       
  85.   <input class="form2" type="submit" name="no" value="清除">                        
  86. </form>                        
  87. </body>                        
  88. </html>