📄 browse_dept.asp
字号:
<!--#include file="../includes/db.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>办公自动化系统</title>
<%
call insureID()
if session("POSITION_ID")>=4 then
response.redirect "Browse.asp"
end if
%>
</head>
<body>
<center>
<table border="0" width="100%" height="50" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"></td>
</tr>
</table>
<table width="75%" border="0" cellpadding="0" cellspacing="1" bgcolor="#5A8BCE">
<tr bgcolor="#0000FF">
<td height="35" align=left bgcolor="#E6F7FF"><div align="center"><b><font color="#000000">部门列表</font></b></div></td>
</tr>
</table>
<table width="75%" border="0" cellpadding="4" cellspacing="1" bordercolorlight="#C0C0C0" bordercolordark="#FFFFFF" bgcolor="#5A8BCE">
<tr>
<td width="15%" bgcolor="#FCFCFC">部门号</td>
<td width="60%" bgcolor="#FCFCFC">部门名称</td>
</tr>
<%
sql="SELECT * FROM Dept"
call openDB()
rs.open sql,conn,1,1
while not rs.eof
if rs("Dept_id")=1 then
rs.MoveNext
else
response.write "<tr>"
response.write "<td width=""15%"" bgcolor=""#FCFCFC"">"
response.write rs("DEPT_ID")&"</td>"
response.write "<td width=""60%"" bgcolor=""#FCFCFC""><a href=""Browse.asp?Dept_id=" _
&rs("Dept_id")&"&Dept_name="&rs("Dept_name")&""">"
response.write rs("Dept_name")&"</a></td>"
response.write "</tr>"
rs.MoveNext
end if
wend
call closeDB()
%>
<tr>
<td width="75%" bgcolor="#EFEFEF" height="50" colspan=2 align=center>
<a href="javaScript:history.back()">[返回]</a></td>
</tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -