admin.asp
来自「网站的源码」· ASP 代码 · 共 36 行
ASP
36 行
<!-- #include file="..\Top.asp" -->
<%
If Request("txtAdminID") <> "Admin_Lily" OR Request("txtAdminPWD") <> "admin" Then
%>
<form method="POST" action="admin.asp">
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="600" height="147" align="center">
<tr>
<td width="157" height="34" align="right">管理员ID:</td>
<td width="440" height="34" align="center">
<input type="text" name="txtAdminID" size="20">
</td>
</tr>
<tr>
<td width="157" height="40" align="right">管理员密码:</td>
<td width="440" height="40" align="center">
<input type="password" name="txtAdminPWD" size="20"></td>
</tr>
<tr>
<td width="597" height="52" colspan="2" align="center">
<input type="submit" value="确认登录信息" name="B1">
<input type="reset" value="重新输入信息" name="B2">
</td>
</tr>
</table>
</form>
<%
Else
Session("UserID") = "Admin_Lily"
%>
<!-- #include file="AdminTable.htm" -->
<%
End If
%>
<!-- #include file="..\Bottom.htm" -->
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?