📄 login_article.asp
字号:
<% option explicit%>
<%Response.Buffer=True%>
<html>
<head>
<title>新闻管理</title>
</head>
<body BGCOLOR=#9933CC>
<form name="form1" method="post" action="">
<p align="center">请输入新闻管理密码:
<input type="password" name="password">
<input type="submit" value="确定">
</form>
<%
IF Request.form("password")="123456" Then
Dim sql
session("login")="yes"
Response.Redirect "list_article.asp"
ElseIf Request("password")<>"" Then
Response.Write "密码错误,请重新输入"
end if
%>
<hr width="80%" noshade size="1">
<div align="center"> <a href="more.asp">返回</a></div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -