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

家庭/个人应用

开发平台:

ASP/ASPX

  1. <!--#include file="../checkpost.asp"-->
  2. <!--#include file="articleconn.asp"-->
  3. <!--#include file="security.asp"-->
  4. <%if session("flag")>3 then
  5.     response.write "<br><p align=center>您的操作权限不够!</p>"
  6.     response.end
  7. end if
  8. %>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  12. <title>会员价格设置</title>
  13. <link href="inc/Admin_STYLE.CSS" rel="stylesheet" type="text/css">
  14. </head>
  15. <%
  16. set rs=server.createobject("adodb.recordset")
  17. sql="select * from setmoney where id=1"
  18. rs.open sql,conn,1,3
  19. pmoney=rs("pmoney")
  20. bmoney=rs("bmoney")
  21. hmoney=rs("hmoney")
  22. zmoney=rs("zmoney")
  23. p150=rs("p150")
  24. p200=rs("p200")
  25. p250=rs("p250")
  26. p350=rs("p350")
  27. p400=rs("p400")
  28. p500=rs("p500")
  29. p1000=rs("p1000")
  30. p1500=rs("p1500")
  31. rs.close
  32. %>
  33. <body>
  34. <div align="center"><font color="#FF0000"><strong>会员价格设置</strong></font> </div>
  35. <form name="moneysave" method="post" action="moneysave.asp">
  36.   <table cellpadding="2" cellspacing="1" border="0" width="90%" class="border" align=center>
  37.     <tr align="center" bgcolor="#429AEF"> 
  38.       <td height=25 colspan=2 ><font color="#FFFFFF"><strong>包月会员价格</strong></font> 
  39.     <tr> 
  40.       <td width="30%"  class="tdbg" height=23><div align="center">普 通 会 员 :</div></td>
  41.       <td width="70%" class="tdbg"> <font color="#FFFFFF"><font color="#0000FF">
  42.         <input name="pmoney" type="text" value=<%=pmoney%>>
  43.       </font></font>        元/每月</td>
  44.     </tr>
  45.     <tr> 
  46.       <td width="30%" class="tdbg" height=23><div align="center">白 银 会 员 :</div></td>
  47.       <td width="70%" class="tdbg"> <font color="#FFFFFF"><font color="#0000FF">
  48.         <input name="bmoney" type="text" value=<%=bmoney%>>
  49.       </font></font>        元/每月</td>
  50.     </tr>
  51.     <tr> 
  52.       <td class="tdbg" height=23><div align="center">黄 金 会 员 :</div></td>
  53.       <td class="tdbg"> <font color="#FFFFFF"><font color="#0000FF">
  54.         <input name="hmoney" type="text" value=<%=hmoney%>>
  55.       </font></font>        元/每月</td>
  56.     </tr>
  57.     <tr> 
  58.       <td width="30%" class="tdbg" height=23><div align="center">钻 石 会 员 :</div></td>
  59.       <td width="70%" class="tdbg"> <font color="#0000FF">
  60.         <input name="zmoney" type="text" value=<%=zmoney%>>
  61.       </font>        元/永久</td>
  62.     </tr>
  63.   </table>
  64.   <br>
  65.   <table cellpadding="2" cellspacing="1" border="0" width="90%" class="border" align=center>
  66.     <tr align="center" bgcolor="#429AEF"> 
  67.       <td height=25 colspan=2 ><font color="#FFFFFF"><strong>计点会员价格</strong></font> 
  68.     <tr> 
  69.       <td width="49%"  class="tdbg" height=23> <div align="center">150点 
  70.           <font color="#0000FF" size="2">
  71.           <input name="p150" type="text" value=<%=p150%> size="10">
  72.           </font>          元</div></td>
  73.       <td width="51%" class="tdbg"><div align="center">200点 
  74.           <font color="#0000FF" size="2">
  75.           <input name="p200" type="text" value=<%=p200%> size="10">
  76.           </font>          元 </div></td>
  77.     </tr>
  78.     <tr> 
  79.       <td width="49%" class="tdbg" height=23> <div align="center">250点 
  80.           <font color="#0000FF" size="2">
  81.           <input name="p250" type="text" value=<%=p250%> size="10">
  82.           </font>          元</div></td>
  83.       <td width="51%" class="tdbg"><div align="center">350点 
  84.           <font color="#0000FF" size="2">
  85.           <input name="p350" type="text" value=<%=p350%> size="10">
  86.           </font>          元</div></td>
  87.     </tr>
  88.     <tr> 
  89.       <td class="tdbg" height=23><div align="center">400点 
  90.           <font color="#0000FF" size="2">
  91.           <input name="p400" type="text" value=<%=p400%> size="10">
  92.           </font>          元</div></td>
  93.       <td class="tdbg"><div align="center">500点 
  94.           <font color="#0000FF" size="2">
  95.           <input name="p500" type="text" value=<%=p500%> size="10">
  96.           </font>          元</div></td>
  97.     </tr>
  98.     <tr> 
  99.       <td width="49%" class="tdbg" height=23><div align="center">1000点 
  100.           <font color="#0000FF" size="2">
  101.           <input name="p1000" type="text" value=<%=p1000%> size="10">
  102.           </font>          元</div></td>
  103.       <td width="51%" class="tdbg"><div align="center">1500点 
  104.           <font color="#0000FF" size="2">
  105.           <input name="p1500" type="text" value=<%=p1500%> size="10">
  106.           </font>          元 </div></td>
  107.     </tr>
  108.   </table>
  109.   <p align="center"><font color="#00FFFF"> 
  110.     <input type="submit" name="Submit" value="确 定">
  111.      
  112. <input type="reset" name="Submit2" value="重 执" class="bt">
  113.     </font></p>
  114.   </form>
  115. </body>
  116. </html>