ShowCallboard.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:4k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../FS_Inc/Const.asp" -->
  3. <!--#include file="../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="../FS_Inc/Function.asp" -->
  5. <!--#include file="lib/strlib.asp" -->
  6. <!--#include file="lib/UserCheck.asp" -->
  7. <%
  8. Dim strNews,RsShownSQL,RsShownObj
  9. Dim p_Newsid,RsObj
  10. p_Newsid = NoSqlHack(Request.QueryString("Newsid"))
  11. User_Conn.execute("update FS_ME_News set hits=hits+1 where NewsID="& p_Newsid &"")
  12. strNews = NoSqlHack(Request.QueryString("NewsId"))
  13. RsShownSQL = "select  NewsID,Title,Content,Addtime,GroupID,NewsPoint,isLock,hits From FS_ME_News where NewsID="&strNews
  14. Set RsShownObj = server.CreateObject(G_FS_RS)
  15. RsShownObj.Open RsShownSQL,User_Conn,1,3
  16. if RsShownObj.eof then
  17. strShowErr = "<li>错误的参数</li><li>找不到记录</li>"
  18. Response.Redirect("lib/Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  19. Response.end
  20. Else
  21.    '判断公告浏览权限
  22.    '---------
  23.    if RsShownObj("isLock") = 1 then
  24. strShowErr = "<li>错误的参数</li><li>此公告已经被管理员锁定</li>"
  25. Response.Redirect("lib/Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  26. Response.end
  27.    End if
  28. %>
  29. <html xmlns="http://www.w3.org/1999/xhtml">
  30. <title><% = RsShownObj("title")%>---浏览公告-网站内容管理系统</title>
  31. <meta name="keywords" content="风讯cms,cms,FoosunCMS,FoosunOA,FoosunVif,vif,风讯网站内容管理系统">
  32. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
  33. <meta content="MSHTML 6.00.3790.2491" name="GENERATOR" />
  34. <meta name="Keywords" content="Foosun,FoosunCMS,Foosun Inc.,风讯,风讯网站内容管理系统,风讯系统,风讯新闻系统,风讯商城,风讯b2c,新闻系统,CMS,域名空间,asp,jsp,asp.net,SQL,SQL SERVER" />
  35. <link href="images/skin/Css_<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>/<%=Request.Cookies("FoosunUserCookies")("UserLogin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  36. <head>
  37. <body>
  38. <table width="98%" border="0" align="center" cellpadding="1" cellspacing="1" class="table">
  39.   <tr>
  40.     <td>
  41.       <!--#include file="top.asp" -->
  42.     </td>
  43.   </tr>
  44. </table>
  45. <table width="98%" height="135" border="0" align="center" cellpadding="1" cellspacing="1" class="table">
  46.   
  47.     <tr class="back"> 
  48.       <td   colspan="2" class="xingmu" height="26"> <!--#include file="Top_navi.asp" --> </td>
  49.     </tr>
  50.     <tr class="back"> 
  51.       <td width="18%" valign="top" class="hback"> <div align="left"> 
  52.           <!--#include file="menu.asp" -->
  53.         </div></td>
  54.       <td width="82%" valign="top" class="hback"><table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  55.         <tr class="hback"> 
  56.           <td class="hback"><strong>位置:</strong><a href="../">网站首页</a> &gt;&gt; 
  57.             <a href="main.asp">会员首页</a> &gt;&gt; <a href="Callboard.asp">会员公告</a>&gt;&gt;&gt;浏览公告</td>
  58.         </tr>
  59.       </table> 
  60.       <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  61.         <tr class="hback"> 
  62.           <td height="24" class="xingmu"><span class="menu_left">
  63.             <% = RsShownObj("title")%>
  64.             </span></td>
  65.         </tr>
  66.         <tr class="hback"> 
  67.           <td height="170" valign="top" class="hback"> 
  68.             <% = RsShownObj("Content")%>
  69.           </td>
  70.         </tr>
  71.         <tr class="hback">
  72.           <td class="hback"><div align="right">添加日期: 
  73.               <% = RsShownObj("Addtime")%>&nbsp;|&nbsp; 阅读: 
  74.               <% = RsShownObj("hits")%>
  75.               次 </div></td>
  76.         </tr>
  77.       </table></td>
  78.     </tr>
  79.     <tr class="back"> 
  80.       <td height="20"  colspan="2" class="xingmu"> <div align="left"> 
  81.           <!--#include file="Copyright.asp" -->
  82.         </div></td>
  83.     </tr>
  84.  
  85. </table>
  86. </body>
  87. </html>
  88. <%
  89. End if
  90. RsShownObj.close
  91. Set RsShownObj = nothing
  92. Set Fs_User = Nothing
  93. %>
  94. <!--Powsered by Foosun Inc.,Product:FoosunCMS V4.0系列-->