📄 query_qingjia.asp
字号:
<!--#include file="conn.asp"-->
<%
if session("user")="" then
response.write "您无此权限"
response.end
end if
dim id
id=trim(request("id"))
set rs=server.createobject("adodb.recordset")
sql="select * from qingjia where id ="& id
rs.open sql,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>请假备注查询</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--#include file="top.asp"-->
<p>
<div align="center">
<table width="400" border="1" bordercolorlight="#000000" cellspacing="0" cellpadding="4" bordercolordark="#FFFFFF">
<tr>
<td width="15%">姓名</td>
<td width="70%" align="center">备注</td>
<td width="15%"> </td>
</tr>
<tr>
<td width="15%"><%=rs("user_name")%></td>
<td width="70%"><%=rs("yuanying")%></td>
<td width="15%"><a href="add_qingjia.asp">返回</a></td>
</tr>
</table>
</div>
<p>
<!--#include file="down.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -