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

📄 meetingroom_list.asp

📁 OFFICE办公自动化
💻 ASP
字号:
<%
'OA 表单生成器1.0
'功能:会议室列表
'参数:request("page")=int #当前页码;  request.form("Search")=chr #上次查询条件
%>

<!--#include file="../inc/Secure.asp"-->
<!--#include file="../inc/conn.asp"-->
<!--#include file="../inc/Const.asp"-->

<%
'response.buffer=false
'------------------------------------------------设置参数
LoginID=trim(session("LoginID")) : if LoginID="" then LoginID=0 '当前用户ID
maxmessage=15 '每页显示记录数
currentpage=request("page") '当前页码
Search=request("Search") '上次查询条件
'------------------------------------------------
'------------------------------------------------取记录
'分页取记录 (返回rs对象)
'rs.recordcount 为记录总数
'rs.PageSize 为本页记录数
'
table="tbioaMeetingRoom" '表名

'接受查询参数


'查寻条件
if Search="" then
	Search="WHERE "
	Search=Search & "1=1"'可查看所有人录入的记录
	'Search=Search & "userid="&LoginID'只能查看自己录入的记录
END if


set rs=Server.CreateObject("ADODB.RecordSet")
sql="select * from " & table & " " & Search & " order by ID desc"
rs.open sql,oConn,1,1
Showpage=SearchPaging(rs,maxmessage,currentpage,Search)
'------------------------------------------------
%>

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../css/main.css" type=text/css>
<title>main</title>
</head>

<body topmargin="10" leftmargin="10">

<!--#include file="MeetingRoom_menu.html"-->

<hr width="100%" size=1 color="#000000">

<%=Showpage%>
<br><br>
<%
if rs.RecordCount=0 then
	response.write "<BR><BR>暂时为空!"
else
%>


<table width="100%" cellspacing="1" cellpadding="2" class="tab">
  <tr>
	<td class="tdTop">名称</td>
	<td class="tdTop">地点</td>
	<td class="tdTop">可容纳人数</td>
	<td class="tdTop">设备情况</td>
	<td class="tdTop">使用说明</td>
	<td class="tdTop">备注</td>
	<td class="tdTop" colspan="3" width="100">相关操作</td>
  </tr>
<%for i = 0 to rs.PageSize-1
   If rs.EOF Then Exit For
   if i mod 2 = 0 then td_class="td1" else td_class="td2"
%>
  <tr>
	<td class="<%=td_class%>"><%=HtmlOut(rs("name"))%></td>
	<td class="<%=td_class%>"><%=HtmlOut(rs("area"))%></td>
	<td class="<%=td_class%>"><%=HtmlOut(rs("accept"))%> (人)</td>
	<td class="<%=td_class%>"><%=HtmlOut(rs("device"))%></td>
	<td class="<%=td_class%>"><%=HtmlOut(rs("caption"))%></td>
	<td class="<%=td_class%>"><%=HtmlOut(rs("remark"))%></td>
	<td class="<%=td_class%>" width="50">
	  <img border="0" src="../images/icon_show.gif" align="left">
	  <a href="MeetingRoom_show.asp?id=<%=rs("ID")%>">查看</a>
	</td>
	<td class="<%=td_class%>" width="50">
	  <img border="0" src="../images/icon_edit.gif" align="left">
	  <a href="javascript:GoURL('MeetingRoom_edit.asp?id=<%=rs("ID")%>&page=<%=currentpage%>')">编辑</a>
	</td>
	<td class="<%=td_class%>" width="50">
	  <img border="0" src="../images/icon_dele.gif" align="left">
	  <a href="javascript:GoURL('MeetingRoom_dele.asp?id=<%=rs("ID")%>&page=<%=currentpage%>')" onClick="return confirm('确定要删除该条记录吗?\n该操作不可恢复!')">删除</a>
	</td>
  </tr>
<%
rs.MoveNext
next
%>
</table>


<%
end if
rs.close
%>

</body>

</html>

<%'释放对象变量
oConn.close
%> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -