special_add.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. <title>增加影星专辑</title>
  13. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  14. <link rel="stylesheet" type="text/css" href="inc/Admin_STYLE.css">
  15. <style type="text/css">
  16. <!--
  17. .样式1 {
  18. font-size: 9pt;
  19. font-weight: bold;
  20. }
  21. -->
  22. </style>
  23. </head>
  24. <body text="#000000">
  25. <form name="form1" method="post" action="special_add_save.asp">
  26.   <p align="center" class="样式1">增加影星专辑</p>
  27.     <div align="center">
  28.     <table width="54%" border="0" height="30" cellspacing="1" cellpadding="2" class="border">
  29.       <tr class="tdbg">
  30.         <td height="30" width="100" align="center"><div align="left">专辑名称:</div></td>
  31.         <td height="30" width="400"> 
  32.           <input name="special" type="text" size="36"></td>
  33.       </tr>
  34.       <tr class="tdbg">
  35.         <td height="30" width="100" align="center"><div align="left">影星名称:</div></td>
  36.         <td height="30" width="400"> 
  37.         <input type="text" name="name" size="36"></td>
  38.       </tr>
  39.       <tr class="tdbg">
  40.               <td width="68" height="25" nowrap>                图片路径: </td>
  41.               <td height="25" width="511">
  42.                 <input name="pic" type="text" class="smallinput" value="<%if request.cookies("images")="" then%>images/nopic.gif<%else%><%response.write request.cookies("images")%><%end if%>" size="20" maxlength="255"></td>
  43.       </tr>
  44.          <tr class="tdbg"><td width="68" height="25" nowrap>           上传图片: </td>
  45.    <td height="25" width="511">
  46.                   
  47.                 <iframe style="top:2px" ID="UploadFiles" src="uupgif.asp" frameborder=0 scrolling=no width="450" height="25"> </iframe></td>
  48.       </tr>
  49.       <tr class="tdbg">
  50.         <td height="30" width="100" align="center"><div align="left">点击次数:</div></td>
  51.         <td height="30" width="400"> 
  52.             <input type="text" name="hits" size="12">&nbsp;&nbsp;是否推荐:<select size="1" name="best">
  53.             <option value="true">是</option>
  54.             <option selected value="false">否</option>
  55.           </select></td>
  56.       </tr>
  57.       <tr class="tdbg">
  58.         <td height="30" width="100" align="center"><div align="left">专辑介绍:</div></td>
  59.         <td height="30" width="400"> 
  60.           <textarea rows="11" name="special_intro" cols="51"></textarea></td>
  61.       </tr>
  62.       <tr class="tdbg">
  63.         <td height="30" width="100" align="center"><div align="left">影星介绍:</div></td>
  64.         <td height="30" width="400"> 
  65.           <textarea rows="11" name="name_intro" cols="51"></textarea></td>
  66.       </tr>
  67.       <tr class="tdbg">
  68.         <td height="30" width="100" align="center"> </td>
  69.         <td height="30" width="400"> 
  70.          </td>
  71.       </tr>
  72.     </table>
  73.     <input class="form2" type="submit" name="yes" value="确定添加">                       
  74.     <input class="form2" type="submit" name="no" value="清除">                        
  75.     </div>
  76. </form>                        
  77. </body>                        
  78. </html>