⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 query_qingjia.asp

📁 职业培训学校学生档案成绩费用管理系统V1.0免费版.rar
💻 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%">&nbsp;</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 + -