|
姓名 |
主题 |
状态 |
时间 |
<%
' set rs_1=server.createobject("adodb.recordset")
' sql="select top 1 xzjg_bigname from xzjg_bigclass where big_id="&session("big_id")
' rs_1.open sql,conn,3,1
' if not rs_1.eof and not rs_1.bof then
' xzjg_bigname=trim(rs_1("xzjg_bigname"))
' end if
' rs_1.close
' set rs_1=nothing
shou=Request("shou")
if shou="" then
sql="select * from slxxgl order by id DESC"
else
sql="select * from slxxgl where yname like '%"&shou&"%' or ycontent like '%"&shou&"%' order by id DESC "
end if
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
rcount=rs.recordcount
pmcount=15
rs.pagesize=pmcount
zpage=rs.pagecount
pageno=clng(request("pageno"))
if isempty(pageno) or cint(pageno)<1 or cint(pageno)>zpage then
pageno=1
end if
if not(rs.bof and rs.eof) then
rs.absolutepage=pageno
do while not rs.eof and pmcount>0
j=j+1
%>
详细信息 |
<%=rs("yname")%> |
<%=rs("ytitle")%> |
<%
yhuifu=rs("yhuifu")
if yhuifu<>"" then %>
已处理
<%else%>
待处理
<%end if%>
|
<%=rs("addtime")%> |
| 姓名: |
<%=rs("yname")%> |
提交受理时间:<%=rs("addtime")%> |
| 联系电话: |
<%=rs("yphone")%> |
电子邮件:<%=rs("yemail")%> |
| 地址: |
<%=rs("yaddr")%> |
| 受理主题: |
<%=rs("ytitle")%> |
| 受理内容: |
<%=rs("ycontent")%> |
| 处理结果: |
<%=rs("yhuifu")%>
<%if rs("yhuifu")<>"" then%>
(处理人:<%=rs("huifuren")%>)
<%end if%>
|
|
<%rs.movenext
pmcount=pmcount-1
loop
else
%>
| 对不起!目前库中没有您要查询记录![===<%= Request("shou") %>===] |
<%
end if
rs.close
set rs=nothing %>
|