Book.asp
资源名称:eat.rar [点击查看]
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:11k
源码类别:
数据库编程
开发平台:
ASP/ASPX
- <% Option Explicit %>
- <!--#include file="../FS_Inc/Const.asp" -->
- <!--#include file="../FS_InterFace/MF_Function.asp" -->
- <!--#include file="../FS_Inc/Function.asp" -->
- <!--#include file="lib/strlib.asp" -->
- <!--#include file="lib/UserCheck.asp" -->
- <!--#include file="../FS_Inc/Func_Page.asp" -->
- <%
- Response.Buffer = True
- Response.Expires = -1
- Response.ExpiresAbsolute = Now() - 1
- Response.Expires = 0
- Response.CacheControl = "no-cache"
- dim ShowChar,strAction,ShowChar_1,str_m_type
- str_m_type = NoSqlHack(Request.QueryString("M_type"))
- if isnull(str_m_type) or not isnumeric(str_m_type) or trim(str_m_type)="" then
- strShowErr = "<li>错误参数</li>"
- Response.Redirect("lib/error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
- Response.end
- end if
- ShowChar = "我的留言"
- ShowChar_1 = "留言人"
- strAction = ""
- If Request.Form("Action") = "Del" then
- Dim DelID,Str_Tmp,Str_Tmp1
- DelID = NoSqlHack(request.Form("BookID"))
- if DelID = "" then
- strShowErr = "<li>你必须选择一项再删除</li>"
- Call ReturnError(strShowErr,"")
- End if
- User_Conn.execute("Delete From FS_ME_Book where BookId in ("&DelID&") and M_ReadUserNumber ='"& Fs_User.UserNumber&"'")
- strShowErr = "<li>删除留言成功</li>"
- Response.Redirect("lib/Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
- Response.end
- End if
- Dim int_RPP,int_Start,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo,strpage,i
- Dim tmp_re,tmp_er
- int_RPP=20 '设置每页显示数目
- int_showNumberLink_=8 '数字导航显示数目
- showMorePageGo_Type_ = 1 '是下拉菜单还是输入值跳转,当多次调用时只能选1
- str_nonLinkColor_="#999999" '非热链接颜色
- toF_="<font face=webdings title=""首页"">9</font>" '首页
- toP10_=" <font face=webdings title=""上十页"">7</font>" '上十
- toP1_=" <font face=webdings title=""上一页"">3</font>" '上一
- toN1_=" <font face=webdings title=""下一页"">4</font>" '下一
- toN10_=" <font face=webdings title=""下十页"">8</font>" '下十
- toL_="<font face=webdings title=""最后一页"">:</font>"
- strpage=NoSqlHack(request("page"))
- if len(strpage)=0 Or strpage<1 or trim(strpage)=""Then:strpage="1":end if
- %>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <title>留言---<% = ShowChar%>---网站内容管理系统</title>
- <meta name="keywords" content="风讯cms,cms,FoosunCMS,FoosunOA,FoosunVif,vif,风讯网站内容管理系统">
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <meta content="MSHTML 6.00.3790.2491" name="GENERATOR" />
- <meta name="Keywords" content="Foosun,FoosunCMS,Foosun Inc.,风讯,风讯网站内容管理系统,风讯系统,风讯新闻系统,风讯商城,风讯b2c,新闻系统,CMS,域名空间,asp,jsp,asp.net,SQL,SQL SERVER" />
- <link href="images/skin/Css_<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>/<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>.css" rel="stylesheet" type="text/css">
- <head>
- <body>
- <table width="98%" border="0" align="center" cellpadding="1" cellspacing="1" class="table">
- <tr>
- <td>
- <!--#include file="top.asp" -->
- </td>
- </tr>
- </table>
- <table width="98%" height="135" border="0" align="center" cellpadding="1" cellspacing="1" class="table">
- <tr class="back">
- <td colspan="2" class="xingmu" height="26"> <!--#include file="Top_navi.asp" --> </td>
- </tr>
- <tr class="back">
- <td width="18%" valign="top" class="hback"> <div align="left">
- <!--#include file="menu.asp" -->
- </div></td>
- <td width="82%" valign="top" class="hback"><table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
- <tr class="hback">
- <td class="hback"><strong>位置:</strong><a href="../">网站首页</a> >>
- <a href="main.asp">会员首页</a> >> 留言-<% = ShowChar %>
- <<
- <%
- select case Request.QueryString("M_type")
- case "0"
- Response.Write("会员留言")
- case "1"
- Response.Write("新闻留言")
- case "2"
- Response.Write("供求留言")
- case "3"
- Response.Write("求职招聘留言")
- case "4"
- Response.Write("房产留言")
- case "5"
- Response.Write("其他留言")
- end select
- %>
- >> </td>
- </tr>
- </table>
- <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
- <form name="form1" method="post" action="">
- <tr class="hback">
- <td colspan="12" class="hback"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr class="hback">
- <td width="27%" class="hback"> <%
- Dim RsBookObj,RsBookSQL
- Dim strSQLs
- strpage=request("page")
- if len(strpage)=0 Or strpage<1 or trim(strpage)="" Then strpage="1"
- Set RsBookObj = Server.CreateObject(G_FS_RS)
- RsBookSQL = "Select BookID,M_Title,M_FromUserNumber,M_type,M_ReadUserNumber,M_Content,M_FromDate,M_ReadTF,LenContent From FS_ME_Book where M_ReadUserNumber='"&Fs_User.UserNumber&"' and M_Type="& str_m_type &" Order by BookID desc"
- RsBookObj.Open RsBookSQL,User_Conn,1,3
- %>
- 空间占用:
- <%
- Dim UnTotle,FS_Book_1
- Set FS_Book_1 = new Cls_Message
- UnTotle=FS_Book_1.LenbContent(Fs_User.UserNumber)/(1024*200)*100
- Set FS_Book_1 = Nothing
- If IsNull(UnTotle) then UnTotle=0
- Response.Write Formatnumber(UnTotle,2,-1)&"%"
- %>
- (共200K)</div></td>
- <td width="73%" class="hback"> <table width="100%" height="17" border="0" cellpadding="0" cellspacing="1" class="table">
- <tr>
- <td class="hback_1"><img src="images/space_pic_<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>.gif" width="<% = Formatnumber((UnTotle),2,-1)%>%" height="17"></td>
- </tr>
- </table></td>
- </tr>
- </table></td>
- </tr class="hback">
- <tr class="hback">
- <td width="5%" height="22" class="xingmu"><div align="left"><strong>已读</strong></div></td>
- <td width="15%" class="xingmu"><strong>
- <% = ShowChar_1 %>
- </strong></td>
- <td width="36%" height="22" class="xingmu"><div align="left"><strong>标题</strong></div></td>
- <td width="20%" height="22" class="xingmu"><div align="left"><strong>日期</strong></div></td>
- <td width="11%" height="22" class="xingmu"><strong>长度</strong></td>
- <td width="7%" height="22" class="xingmu"><div align="center">查看</div></td>
- <td width="6%" height="22" class="xingmu"><div align="center"><strong>操作</strong></div></td>
- </tr>
- <%
- if RsBookObj.eof then
- RsBookObj.close
- set RsBookObj=nothing
- Response.Write"<tr class=""hback""><td colspan=""7"" class=""hback"" height=""40"">没有留言。</td></tr>"
- else
- RsBookObj.PageSize=int_RPP
- cPageNo=NoSqlHack(Request.QueryString("Page"))
- If cPageNo="" Then cPageNo = 1
- If not isnumeric(cPageNo) Then cPageNo = 1
- cPageNo = Clng(cPageNo)
- If cPageNo<=0 Then cPageNo=1
- If cPageNo>RsBookObj.PageCount Then cPageNo=RsBookObj.PageCount
- RsBookObj.AbsolutePage=cPageNo
- for i=1 to RsBookObj.pagesize
- if RsBookObj.eof Then exit For
- Dim Returvaluestr_R,Returvaluestr_F,strbstat,strben,strcss,strReadTF
- if RsBookObj("M_ReadTF") =0 then
- strbstat = "<b>"
- strben = "</b>"
- strcss = "hback"
- strReadTF = "<font color=red><b>×</b></font>"
- Else
- strbstat = ""
- strben = ""
- strcss = "hback"
- strReadTF = "<font color=#999999><b>√</b></font>"
- End if
- Returvaluestr_R = Fs_User.GetFriendName(RsBookObj("M_ReadUserNumber"))
- if Trim(RsBookObj("M_FromUserNumber")) <> "0" then
- Returvaluestr_F = "<a href=ShowUser.asp?UserNumber="& RsBookObj("M_FromUserNumber") &" target=""_blank"">"&Fs_User.GetFriendName(RsBookObj("M_FromUserNumber"))&"</a>"
- Else
- Returvaluestr_F = "用户不存在"
- End if
- %>
- <tr class="hback">
- <td height="31" class="<% = strcss %>">
- <div align="center">
- <% = strReadTF%>
- </div></td>
- <td class="<% = strcss %>"> <% = Returvaluestr_F %> </td>
- <td class="<% = strcss %>"><a href="Book_Read.asp?BookId=<%=RsBookObj("BookId")%>&M_type=<%=RsBookObj("M_type")%>"><% = strbstat & RsBookObj("M_title") & strben %></a></td>
- <td class="<% = strcss %>"><% = RsBookObj("M_FromDate") %></td>
- <td class="<% = strcss %>"><% = RsBookObj("LenContent") %>
- Byte</td>
- <td class="<% = strcss %>"> <div align="center">
- <%
- Response.Write "<a href=""Book_Read.asp?BookID="& RsBookObj("BookID") &"&M_Type="&RsBookObj("M_type")&""">回复 </a>"
- %>
- </div></td>
- <td class="<% = strcss %>"><input name="BookID" type="checkbox" id="BookID" value="<% = RsBookObj("BookID")%>"></td>
- </tr>
- <%
- RsBookObj.MoveNext
- Next
- %>
- <tr class="hback">
- <td colspan="12"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr class="hback">
- <td colspan="2"> <%
- response.Write "<p>"& fPageCount(RsBookObj,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo)
- %> <div align="right"> </div></td>
- </tr>
- <tr class="hback">
- <td width="64%"><div align="right">节省每一分空间,请及时删除无用信息
- <input type="checkbox" name="chkall" value="checkbox" onClick="CheckAll(this.form)">
- 选中所有留言
- <input name="Action" type="hidden" id="Action" value="Del">
- <input name="strAction" type="hidden" id="strAction" value="<% = strAction%>">
- </div></td>
- <td width="18%"><input type="submit" name="Submit" value="删除选中的留言" onClick="{if(confirm('确定清除您所选择的记录吗??')){this.document.form1.submit();return true;}return false;}">
- </td>
- </tr>
- </table></td>
- </tr>
- <%end if%>
- </form>
- </table>
- </td>
- </tr>
- <tr class="back">
- <td height="20" colspan="2" class="xingmu"> <div align="left">
- <!--#include file="Copyright.asp" -->
- </div></td>
- </tr>
- </table>
- </body>
- </html>
- <%
- Set Fs_User = Nothing
- %>
- <script language="JavaScript" type="text/JavaScript">
- function CheckAll(form)
- {
- for (var i=0;i<form.elements.length;i++)
- {
- var e = form.elements[i];
- if (e.name != 'chkall')
- e.checked = form.chkall.checked;
- }
- }
- </script>
- <!--Powsered by Foosun Inc.,Product:FoosunCMS V4.0系列-->