📄 changepsw.asp
字号:
<!-- #include file="admin.asp" -->
<%
dim id
id = session("id")
set rs = Server.CreateObject("ADODB.Recordset")
sql = "select * from admin where id = '"&id&"'"
rs.open sql,conn,1,3
%>
<html>
<head>
<title>SmartCity 远程数据库管理系统</title>
<link rel="stylesheet" type="text/css" href="data/css.css">
</head>
<body background="data/background.gif" bgproperties=fixed>
<table width="100%" align="center">
<tr>
<td align="center">
<b><font size="5">SmartCity 远程数据库管理系统</font><br><font size="4">Version 1.0 beta</font><br><br></b>
</td>
</tr>
<tr>
<td align="center">
<div style="width: 740;">
<table width="100%">
<tr>
<td align="center" width="80"><a href="index.asp">重选数据库</a></td>
<td align="center" width="70"><a href="tablelist.asp">数据库列表</a></td>
<td align="center" width="70"><a href="createnewtable.asp">新建表格</a></td>
<td></td>
<td align="center" width="50"><a href="changepsw.asp">修改密码</a></td>
<td align="center" width="45"><a href="tablelist.asp">返回</a></td>
</tr>
</table>
</div>
<br>
</td>
</tr>
<tr>
<td align="center">
<form action="getpsw.asp" method="post">
<table class="line" width="300">
<tr>
<td class="line" width="85">管理员帐号</td>
<td class="line"><input type="text" name="id" class="txt" onmouseover="this.style.color='FF9966'" onmouseout="this.style.color='#4B69D8'" value=<%=rs("id")%>></td>
</tr>
<tr>
<td class="line">管理员密码</td>
<td class="line"><input type="text" name="password" class="txt" onmouseover="this.style.color='FF9966'" onmouseout="this.style.color='#4B69D8'" value=<%=rs("password")%>></td>
</tr>
<tr>
<td><br><br></td>
<td><input type="submit" class="btn" onmouseover="this.style.color='FF9966'" onmouseout="this.style.color='#4B69D8'" value="修改"></td>
</tr>
</table>
</form>
<br><br><br>
</td>
</tr>
<tr>
<td align="center">
小城工作室作品 2003.9.6<br>
欢迎访问<a href="http://218.4.50.118/smartcity">『SmartCity 小城在线』</a>
</td>
</tr>
</talbe>
<%
rs.close
conn.close
set rs = nothing
set conn = nothing
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -