📄 check02.asp
字号:
<!--#include file=conn.asp-->
<%
sql="select * from adminuser where id="&request("id")
set rs=conn.execute(sql)
if session("name")<>rs("uid") or session("name")="" then
Response.Redirect("login.asp")
end if
%>
<HTML><HEAD><TITLE>咖啡設計管理登录页面</TITLE>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<STYLE type=text/css>
A{ COLOR: #000000; TEXT-DECORATION: none ;font:9pt "宋体"}
A:hover{ COLOR: #ff0000; TEXT-DECORATION: none ;font:9pt "宋体"}
table,td,body{ FONT-FAMILY: "宋体"; FONT-SIZE: 9pt }
.input{border:1 solid #000000;font:9pt "宋体";background:#ffffff;height:18px}
</STYLE>
</HEAD>
<BODY bgColor=#ffffff leftMargin=0 topMargin=10 >
<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
<form name="form1" method="post" action="check03.asp?id=<%=request("id")%>">
<tr>
<td height="30">
<p align="center"><font color="#924949">+++修改管理员密码+++</font> </td>
</tr>
<tr>
<td height="30"> 帐 号:
<input type="text" name="uid" size="30" class="input" value="<%=rs("uid")%>" >
* </td>
</tr>
<tr>
<td height="30">密 码:
<input type="text" name="pwd" size="30" class="input" value="<%=rs("pwd")%>">
* </td>
</tr>
<tr>
<td height="30">
<input type="submit" name="aa" value="确定提交" class="input">
<input type="reset" name="Submit2" value="让我再想想" class="input">
</td>
</tr>
</form>
</table>
<%
rs.close
set rs=nothing
%>
</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -