inc.asp 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <!--#include file="Conn.asp"--><%Checklogin("系统管理")%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>管理区域</title>
  6. <link rel="stylesheet" href="css/common.css" type="text/css" />
  7. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  8. <script type="text/javascript" src="js/js.js"></script>
  9. <style>
  10. #jmbox{
  11. overflow:auto;zoom:1;margin-top:5px;
  12. }
  13. .jmlabel{
  14. float:left;
  15. width:70px;text-align:right;
  16. height:22px;line-height:22px;
  17. font-size:14px;font-weight:bold;
  18. color:#0099CC;padding-right:4px
  19. }
  20. .txt1{float:left;}
  21. .txtbox{width:820px;height:50px;color: #666;}
  22. .w726{
  23. width:726px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div id="man_zone">
  29. <%
  30. Act = Request.QueryString("act")
  31. If act = "save" Then
  32. webname = Request.Form("webname")
  33. keywords = Request.Form("keywords")
  34. description = Request.Form("description")
  35. indexwebname = Request.Form("indexwebname")
  36. copyright = Request.Form("copyright")
  37. Set Rs = Server.CreateObject("ADODB.RecordSet")
  38. Rs.Open "Select webname,keywords,description,indexwebname,copyright From inc Where id=1",Conn,1,3
  39. If Not Rs.Bof And Not Rs.Eof Then
  40. Rs("webname") = webname
  41. Rs("keywords") = keywords
  42. Rs("description") = description
  43. Rs("indexwebname")=indexwebname
  44. Rs("copyright")=copyright
  45. Else
  46. Rs.AddNew
  47. Rs("webname") = webname
  48. Rs("keywords") = keywords
  49. Rs("description") = description
  50. Rs("indexwebname")=indexwebname
  51. Rs("copyright")=copyright
  52. End If
  53. Rs.Update:Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing
  54. Response.Write "<script>alert('更新成功');top.location.href='index.php'</script>"
  55. Response.End
  56. End If 'end save
  57. %>
  58. <form name="form1" method="post" action="?act=save">
  59. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  60. <tbody>
  61. <tr>
  62. <th width="15%">网站名称</th>
  63. <td><input type="text" id="webname" name="webname" value="<%=TextEnCode(webname)%>" class="txt1" /><input type="hidden" name="id" value="<%=id%>" /></td>
  64. </tr>
  65. <tr>
  66. <th width="15%">网站首页title</th>
  67. <td><input type="text" id="indexwebname" name="indexwebname" value="<%=TextEnCode(indexwebname)%>" class="txt1" /><input type="hidden" name="id" value="<%=id%>" /></td>
  68. </tr>
  69. <tr>
  70. <th width="15%">网站默认关键词</th>
  71. <td><input type="text" id="keywords" name="keywords" value="<%=TextEnCode(webkeywords)%>" class="txt1" /></td>
  72. </tr>
  73. <tr>
  74. <th width="15%">网站默认描述</th>
  75. <td><input type="text" id="description" name="description" value="<%=TextEnCode(webdescription)%>" class="txt1" /></td>
  76. </tr>
  77. <tr>
  78. <th width="15%">版权信息</th>
  79. <td><input type="text" id="copyright" name="copyright" value="<%=TextEnCode(copyright)%>" class="txt1" /></td>
  80. </tr>
  81. <tr>
  82. <th></th>
  83. <td><input type="submit" name="save" id="save" value="确定" class="btn1" /> <input type="reset" name="save" id="save" value="重置" class="btn1" /></td>
  84. </tr>
  85. </tbody>
  86. </table>
  87. </form>
  88. </div>
  89. </body>
  90. </html>