- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
viewreturn.asp
资源名称:shop2.rar [点击查看]
上传用户:btntkt
上传日期:2021-04-16
资源大小:5296k
文件大小:10k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
DOS
- <!--#include file="conn.asp"-->
- <%
- dim cls
- if session("admin")="" then
- Response.Redirect("admin.asp")
- else
- if session("flag")<>"0" then
- cls = Instr(session("flag"), "liuyanfig")
- if cls <= 0 then
- %>
- <script language="javascript">
- if (confirm("您的操作权限不够,系统拒绝你的访问,请点确定返回,或者点取消退出重新登录"))
- location.href="login.asp";
- else
- location.href="index.asp";
- </script>
- <%
- end if
- end if
- end if
- %>
- <html>
- <head>
- <title>Untitled Document</title>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <link href="images/style.css" rel="stylesheet" type="text/css">
- </head>
- <body>
- <table width="95%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#CCCCCC">
- <tr>
- <td class="forumRowHighlight" height="22" bgcolor="f1f1f1">
- <div align="center"><font color="#000000">查看信息反馈</font></div>
- </td>
- </tr>
- <tr>
- <td class="forumRowHighlight" height="169" align="center" valign="top" bgcolor="#FFFFFF">
- <%
- Function unHtml(content)
- ON ERROR RESUME NEXT
- unHtml=content
- IF content <> "" Then
- unHtml=Server.HTMLEncode(unHtml)
- unHtml=Replace(unHtml,vbcrlf,"<br>")
- unHtml=Replace(unHtml,chr(9)," ")
- unHtml=Replace(unHtml," "," ")
- End IF
- IF Err.Number <>0 Then
- unHtml= "HTML转换中出错请联系管理员<br>"
- Err.Clear
- End IF
- End Function
- %>
- <%
- set rs=server.createobject("adodb.recordset")
- rs.open "select * from guestbook order by id desc",conn,3,2
- 'dim page
- 'dim e_page
- 'e_page=5 '每页显示留言数
- 'rs.pagesize=e_page
- 'if request.querystring("page")="" or request.querystring("page")=0 then
- 'page=1
- 'else
- 'page=request.querystring("page")
- 'rs.absolutepage=trim(request.querystring("page"))
- 'end if
- %>
- <SCRIPT language=JavaScript>
- function is_number(str)
- {
- exp=/[^0-9()-]/g;
- if(str.search(exp) != -1)
- {
- return false;
- }
- return true;
- }
- function CheckInput(){
- if(form.name.value==''){
- alert("您没有填写昵称!");
- form.name.focus();
- return false;
- }
- if(form.name.value.length>20){
- alert("昵称不能超过20个字符!");
- form.name.focus();
- return false;
- }
- if(!is_number(document.form.qq.value)){
- alert("QQ号必须是数字!");
- form.qq.focus();
- return false;
- }
- if(form.content.value==''){
- alert("您没有填写留言内容!");
- form.content.focus();
- return false;
- }
- if(form.content.value.length>255){
- alert("留言内容不能超过255个字符!");
- form.content.focus();
- return false;
- }
- return true;
- }
- </SCRIPT>
- <br>
- <%
- if rs.eof and rs.bof then
- %>
- <table width="380" border="0" align="center" cellpadding="4" >
- <tr>
- <td class="forumRowHighlight" height="40" align="center"> <p>还没有任何留言!</p></td>
- </tr>
- </table>
- <%else%>
- <%
- rs.PageSize =5 '每页记录条数
- iCount=rs.RecordCount '记录总数
- iPageSize=rs.PageSize
- maxpage=rs.PageCount
- page=request("page")
- per_page=rs.PageSize
- if Not IsNumeric(page) or page="" then
- page=1
- else
- page=cint(page)
- end if
- if page<1 then
- page=1
- elseif page>maxpage then
- page=maxpage
- end if
- rs.AbsolutePage=Page
- if page=maxpage then
- x=iCount-(maxpage-1)*iPageSize
- else
- x=iPageSize
- end if
- %>
- <table width="100%" border="0">
- <tr>
- <td class="forumRowHighlight" colspan="12" height="25" align="center" bgcolor="#FFFFFF" >
- <%
- call PageControl(iCount,maxpage,page,"border=0 align=center","<p align=center>",per_page)
- %>
- </td>
- </tr>
- </table>
- <%
- For i=1 To x
- 'do while not rs.eof and e_page>0
- %>
- <TABLE width=98% border=0 align="center" cellPadding=0 cellSpacing=1 bgcolor="#CCCCCC">
- <TBODY>
- <TR>
- <td class="forumRowHighlight" bgcolor="f1f1f1"><TABLE width="100%" border=0 cellpadding="0" cellspacing="0">
- <TBODY>
- <TR bgcolor="f1f1f1">
- <td class="forumRowHighlight" width="67" height="23" align="center" bgcolor="f1f1f1"><font color="#FF0000">留言ID:<%=rs("id")%></font></TD>
- <td class="forumRowHighlight" width="464" align="right">
- <%if rs("qq")<>"" then%>
- <a title=QQ:<%=rs("qq")%>><img src="../images/qq.gif" width="16" height="16" border="0">
- <%=rs("qq")%></a>
- <%end if%>
-
- <%if rs("email")<>"" then%>
- <a href="mailto:<%=rs("email")%>" target="_blank" title=Email:<%=rs("email")%>><img src="../images/email.gif" width="14" height="15" border="0"></a>
- <a href="mailto:<%=rs("email")%>" target="_blank" title=Email:<%=rs("email")%>><%=rs("email")%></a>
- <%end if%>
- <%if rs("url")<>"" then%>
- <a href="<%=rs("url")%>" target="_blank" title=主页:<%=rs("url")%>><img src="../images/url.gif" width="16" height="16" border="0"></a>
- <a href="<%=rs("url")%>" target="_blank" title=主页:<%=rs("url")%>><%=rs("url")%></a>
- <%end if%>
- </TD>
- </TR>
- </TBODY>
- </TABLE></TD>
- </TR>
- <TR>
- <td class="forumRowHighlight" ><TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
- <TBODY>
- <TR>
- <td class="forumRowHighlight" bgcolor="#FFFFFF"> <TABLE width="100%" border=0 style="table-layout:fixed;word-break:break-all">
- <TBODY>
- <TR>
- <td class="forumRowHighlight" width="109"><img src="../images/<%=rs("sex")%>.gif"></TD>
- <td class="forumRowHighlight" colspan="2"> <strong><font color="<%=flzhbt%>">姓名:</font></strong><font color="<%=flzhzt%>"><%=rs("name")%></font><br>
- <strong><font color="<%=flzhbt%>">内容:</font></strong><font color="<%=flzhzt%>"><%=unHtml(rs("content"))%></font></TD>
- </TR>
- <TR>
- <td class="forumRowHighlight" colspan="2"> [<a href="reply.asp?id=<%=rs("id")%>">回复</a>]
- [<a href="fkdel.asp?id=<%=rs("id")%>">删除</a>]
- </TD>
- <td class="forumRowHighlight" width="250" align="right"><%=rs("time")%></TD>
- </TR>
- </TBODY>
- </TABLE></TD>
- </TR>
- </TBODY>
- </TABLE></TD>
- </TR>
- <%if rs("reply")<>"" then%>
- <TR>
- <td class="forumRowHighlight" bgColor=#f2f2f2> <table width="100%" border="0" style="table-layout:fixed;word-break:break-all">
- <tr>
- <td class="forumRowHighlight" width="10"> </td>
- <td class="forumRowHighlight" width="567"><font color="#FF0000">管理员回复:</font><br> <%=unHtml(rs("reply"))%></td>
- </tr>
- </table></TD>
- </TR>
- <%end if%>
- </TBODY>
- </TABLE>
- <br>
- <%
- 'e_page=e_page-1
- 'rs.movenext
- 'loop
- RS.MoveNext
- next
- %>
- <table width="100%" border="0">
- <tr>
- <td class="forumRowHighlight" >
- <%
- call PageControl(iCount,maxpage,page,"border=0 align=center","<p align=center>",per_page)
- %>
- </td>
- </tr>
- </table>
- <%
- rs.close
- set rs=nothing
- end if
- %>
- </td>
- </tr>
- </table>
- <!--#include file="foot.asp"-->
- </body>
- </html><%
- Sub PageControl(iCount,pagecount,page,table_style,font_style,per_page)
- '生成上一页下一页链接
- Dim query, a, x, temp
- action = "http://" & Request.ServerVariables("HTTP_HOST") & Request.ServerVariables("SCRIPT_NAME")
- temp=""
- Response.Write("<table " & Table_style & ">" & vbCrLf )
- Response.Write("<form method=get onsubmit=""document.location = '" & action & "?" & temp & "Page='+ this.page.value;return false;""><TR>" & vbCrLf )
- Response.Write("<td align=right>" & vbCrLf )
- Response.Write(font_style & vbCrLf )
- if page<=1 then
- Response.Write ("首页 " & vbCrLf)
- Response.Write ("上页 " & vbCrLf)
- else
- Response.Write("<A HREF=" & action & "?" & temp & "Page=1>首页</A> " & vbCrLf)
- Response.Write("<A HREF=" & action & "?" & temp & "Page=" & (Page-1) & ">上页</A> " & vbCrLf)
- end if
- if page>=pagecount then
- Response.Write ("下页 " & vbCrLf)
- Response.Write ("尾页 " & vbCrLf)
- else
- Response.Write("<A HREF=" & action & "?" & temp & "Page=" & (Page+1) & ">下页</A> " & vbCrLf)
- Response.Write("<A HREF=" & action & "?" & temp & "Page=" & pagecount & ">尾页</A> " & vbCrLf)
- end if
- Response.Write(" 页次:" & page & "/" & pageCount & "页" & vbCrLf)
- Response.Write(" 共有" & iCount & "条/每页"&per_page&"条" & vbCrLf)
- Response.Write(" 转到" & "<INPUT TYEP=TEXT NAME=page SIZE=4 Maxlength=8 VALUE=" & page & ">" & "页" & vbCrLf & "<INPUT type=submit style=""font-size: 9pt"" value=GO class=b2>")
- Response.Write("</TD>" & vbCrLf )
- Response.Write("</TR></form>" & vbCrLf )
- Response.Write("</table>" & vbCrLf )
- End Sub
- %>