📄 shebei.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="include/conn.asp"-->
<%if session("loginname")="" then
Response.redirect"login.asp"
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<LINK href="css/css.css" type="text/css" rel="stylesheet">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<!--#include file="include/header.asp"-->
<table width="760" height="77" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>位置:管理系统:<a href="bendi_shilian.asp">本地预约记录</a></td>
</tr>
<tr>
<td><label></label><label></label></td>
</tr>
</table>
<br />
<table width="760" height="92" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#6fb86c">
<tr>
<td height="33" colspan="8" align="center" valign="middle" bgcolor="#FFFFFF">本地实验预约记录列表</td>
</tr>
<tr bgcolor="#f2fcf1">
<td width="94" height="31">设备名称</td>
<td width="98">IP地址</td>
<td width="102">端口</td>
<td width="102">设备名称</td>
<td width="102">设备型号</td>
<td width="89">标准答案</td>
<td width="137">操作</td>
<td width="56"> </td>
</tr>
<%dim rs
set rs=server.createobject("adodb.recordset")
dim strtai_id
strtai_id=request.querystring("tid")
dim strsql
strsql="select * from tai where id="& strtai_id
' if request.form("yuyue_time")<>"" then
'strsql="select * from yuyue where username='"& session("loginname") &"'" &" and start_time='"& request.form("yuyue_time") &"'"
' end if
rs.open strsql,conn,1,1
if not rs.eof then
%>
<tr bgcolor="#fafafa">
<td width="94" height="28"><%=rs("tai_hao")%></td>
<td width="98"><%=rs("tai_ip")%></td>
<td width="102"><%=rs("tai_duankou")%></td>
<td width="102"><%=rs("shebei_name")%></td>
<td width="102"><%=rs("shebei_typename")%></td>
<td width="89"><%=rs("daan")%></td>
<td width="137"><a href="shebei.asp?tid=<%=rs("id")%>">准备</a> <a href="shebei.asp?tid=<%=rs("id")%>">登录</a> <a href="shebei.asp?tid=<%=rs("id")%>">加载</a> <a href="tijiao.asp">提交</a></td>
<td width="56"> </td>
</tr>
<%end if
rs.close
%>
</table>
<br />
<!--#include file="include/bottom.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -