📄 alluser_psd_view.asp
字号:
<%@LANGUAGE="JAVASCRIPT"%>
<!--#include file="session_0.asp" -->
<!--#include file="Connections/conn1.asp" -->
<%
var rs2__userno1 = "0";
if (String(Request("userno")) != "undefined" &&
String(Request("userno")) != "") {
rs2__userno1 = String(Request("userno"));
}
%>
<%
var rs2 = Server.CreateObject("ADODB.Recordset");
rs2.ActiveConnection = MM_conn1_STRING;
rs2.Source = "SELECT userno, username, userpsd FROM user WHERE userno='"+ rs2__userno1.replace(/'/g, "''") + "'";
rs2.CursorType = 0;
rs2.CursorLocation = 2;
rs2.LockType = 1;
rs2.Open();
var rs2_numRows = 0;
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>福州大学数学与计算机科学学院综合测评分管理系统</title>
<style type="text/css">
<!--
body {
background-image: url(imag/bjx.jpg);
}
.style18 {
font-style: italic;
font-size: 14px;
color: #FFFF66;
}
.style19 {color: #666666}
.style29 {
font-size: 14px;
font-style: italic;
color: #FFFFFF;
}
.style38 {font-size: 12px; color: #FFFFFF; font-style: italic; }
.style39 {font-size: 12px}
-->
</style></head>
<body>
<table width="700" height="524" border="0" align="center" cellpadding="0" cellspacing="0" >
<!--DWLayoutTable-->
<tr>
<td width="89" height="13"></td>
<td width="713"><div align="center"><img src="imag/Top_logo.jpg" width="612" height="105"></div></td>
<td width="48"></td>
</tr>
<tr>
<td height="406"></td>
<td valign="top"><table width="570" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="850" height="406"><table width="700" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th width="37" scope="col"> </th>
<th width="626" height="261" scope="col"><table width="600" height="26" border="0" align="center" cellpadding="0" cellspacing="0">
<% if (!rs2.EOF || !rs2.BOF) { %>
<tr bgcolor="#CC0033">
<th width="102" height="12" scope="col"><span class="style38">姓名:</span></th>
<th width="119" scope="col"><span class="style39"><%=(rs2.Fields.Item("username").Value)%></span></th>
<th width="56" scope="col"><span class="style38">学号:</span></th>
<th width="139" scope="col"><span class="style39"><%=(rs2.Fields.Item("userno").Value)%></span></th>
<th width="64" scope="col"><span class="style38">密码:</span></th>
<th width="120" scope="col"><span class="style39"><%=(rs2.Fields.Item("userpsd").Value)%></span></th>
</tr>
<% } // end !rs2.EOF || !rs2.BOF %>
<% if (rs2.EOF && rs2.BOF) { %>
<tr bgcolor="#CC0033">
<th height="14" colspan="6" scope="col"><span class="style29">该学号不存在!</span></th>
</tr>
<% } // end rs2.EOF && rs2.BOF %>
</table></th>
<th width="37" scope="col"> </th>
</tr>
</table>
<table width="570" height="48" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th height="48" scope="col"> </th>
</tr>
</table></td>
</tr>
</table></td>
<td></td>
</tr>
<tr>
<td height="13"></td>
<td ><div align="center" class="style18">
<p class="style19 style39"> </p>
</div></td>
<td></td>
</tr>
</table>
</body>
</html>
<%
rs2.Close();
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -