admin_cover.asp

来自「e人畅想公用日记本 v1.0」· ASP 代码 · 共 30 行

ASP
30
字号
<!--#include file="top.asp"-->
<%if session("admin")="" then
response.redirect"index.asp"%>
<%elseif session("admin")="yes" then%>
<hr width="600" size="1" noshade>
<table width="600" border="0" cellspacing="0" cellpadding="0" align="center" class="table_pointline" style="font:verdana;table-layout:fixed; word-break:break-all">
  <tr> 
    <td width="150" align="right">已经被蒙蔽的词语:</td>
    <td> <%set show=conn.execute("select*from cover order by id desc")
  do while not show.eof%><%i=1%><%=show("word")%>|<%i=i+1
	show.movenext
	loop
	show.close
	set show=nothing%></td>
  </tr>
</table>
<table width="600" border="0" cellspacing="0" cellpadding="0" align="center" class="table_pointline">
  <tr>
       <form name="form1" method="post" action="admin_savecover.asp">
      <td align="center"> 输入要恢复/蒙蔽的词语: 
        <input type="text" name="word" class="local" maxlength="50">
        <input type="submit" name="Submit" value="提交" class="withoutany">
        <br>
        (一次只输一个!第一次输入该词语即为蒙蔽,第二次操作为恢复)</td>
    </form>
  </tr>
</table>
<!--#include file="bottom.asp"-->
<%else%>
<%end if%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?