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

数据库编程

开发平台:

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="../../FS_Inc/Func_Page.asp" -->
  6. <%
  7. dim Conn,User_Conn,strShowErr
  8. MF_Default_Conn
  9. MF_User_Conn
  10. MF_Session_TF
  11. if not MF_Check_Pop_TF("ME_Photo") then Err_Show 
  12. if not MF_Check_Pop_TF("ME040") then Err_Show 
  13. Function GetFriendName(f_strNumber)
  14. Dim RsGetFriendName
  15. Set RsGetFriendName = User_Conn.Execute("Select UserName From FS_ME_Users Where UserNumber = '"& f_strNumber &"'")
  16. If  Not RsGetFriendName.eof  Then 
  17. GetFriendName = RsGetFriendName("UserName")
  18. Else
  19. GetFriendName = 0
  20. End If 
  21. set RsGetFriendName = nothing
  22. End Function 
  23. if Request("Action")="del" then
  24. if trim(Request("Id"))="" then
  25. strShowErr = "<li>请选择至少一项</li>"
  26. Response.Redirect("../Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  27. Response.end
  28. end if
  29. User_Conn.execute("Delete From FS_ME_Photo where id in ("&Request("Id")&")")
  30. strShowErr = "<li>删除成功</li>"
  31. Response.Redirect("../Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=User/Photo.asp")
  32. Response.End
  33. ElseIf Request("Action")="rec" Then
  34. User_Conn.execute("Update FS_ME_Photo set isRec=1 where id in ("&Request("Id")&")")
  35. strShowErr = "<li>修改成功</li>"
  36. Response.Redirect("../Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=User/Photo.asp")
  37. Response.End
  38. Elseif Request("Action")="unrec" Then 
  39. User_Conn.execute("Update FS_ME_Photo set isRec=0 where id in ("&Request("Id")&")")
  40. strShowErr = "<li>修改成功</li>"
  41. Response.Redirect("../Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=User/Photo.asp")
  42. Response.End
  43. end If
  44. if Request("Action")="all" then
  45. User_Conn.execute("Delete From FS_ME_Photo")
  46. strShowErr = "<li>删除所有成功</li>"
  47. Response.Redirect("../Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=User/Photo.asp")
  48. Response.end
  49. end if
  50. Dim int_RPP,int_Start,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo,strpage,i
  51. int_RPP=15 '设置每页显示数目
  52. int_showNumberLink_=8 '数字导航显示数目
  53. showMorePageGo_Type_ = 1 '是下拉菜单还是输入值跳转,当多次调用时只能选1
  54. str_nonLinkColor_="#999999" '非热链接颜色
  55. toF_="<font face=webdings title=""首页"">9</font>"   '首页 
  56. toP10_=" <font face=webdings title=""上十页"">7</font>" '上十
  57. toP1_=" <font face=webdings title=""上一页"">3</font>" '上一
  58. toN1_=" <font face=webdings title=""下一页"">4</font>" '下一
  59. toN10_=" <font face=webdings title=""下十页"">8</font>" '下十
  60. toL_="<font face=webdings title=""最后一页"">:</font>"
  61. strpage=request("page")
  62. if len(strpage)=0 Or strpage<1 or trim(strpage)=""Then:strpage="1":end if
  63. %>
  64. <html xmlns="http://www.w3.org/1999/xhtml">
  65. <HEAD>
  66. <TITLE>FoosunCMS</TITLE>
  67. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
  68. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  69. <BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 scroll=yes>
  70. <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  71.   <tr class="hback"> 
  72.     <td width="100%" class="xingmu">相册管理</td>
  73.   </tr class="hback">
  74.   <tr class="hback">
  75.     <td class="hback"><a href="UserReport.asp">返回</a>┆<a href="Photo.asp?Action=all" onClick="{if(confirm('确定删除吗?')){return true;}return false;}">清空所有相册</a></td>
  76.   </tr class="hback">
  77. </table>
  78. <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  79.   <form name="myform" method="post" action="">
  80.     <%
  81. dim rs,isrec
  82. set rs = Server.CreateObject(G_FS_RS)
  83. rs.open "select * from FS_ME_Photo  order by id desc",User_Conn,1,1
  84. if rs.eof then
  85.    rs.close
  86.    set rs=nothing
  87.    Response.Write"<tr  class=""hback""><td colspan=""1""  class=""hback"" height=""40"">没有记录。</td></tr>"
  88. else
  89. rs.PageSize=int_RPP
  90. cPageNo=NoSqlHack(Request.QueryString("Page"))
  91. If cPageNo="" Then cPageNo = 1
  92. If not isnumeric(cPageNo) Then cPageNo = 1
  93. cPageNo = Clng(cPageNo)
  94. If cPageNo>rs.PageCount Then cPageNo=rs.PageCount 
  95. If cPageNo<=0 Then cPageNo=1
  96. rs.AbsolutePage=cPageNo
  97. for i=1 to rs.pagesize
  98. if rs.eof Then exit For
  99. isrec=rs("isrec")
  100. %>
  101.     <tr class="hback"> 
  102.       <td width="21%" rowspan="5" class="hback_1"> <table border="0" align="center" cellpadding="2" cellspacing="1" class="table">
  103.           <tr> 
  104.             <td class="hback">
  105.               <%if isnull(trim(rs("PicSavePath"))) then%>
  106.               <img src="Images/nopic_supply.gif" width="90"  id="pic_p_1">
  107.               <%else%>
  108.               <a href="<%=rs("PicSavePath")%>" target="_blank"><img src="<%=rs("PicSavePath")%>" width="90" border="0" id="pic_p_1"></a>
  109.               <%end if%>
  110.             </td>
  111.           </tr>
  112.         </table></td>
  113.       <td width="12%" class="hback"><div align="center"><strong>相片名称:</strong></div></td>
  114.       <td width="40%" class="hback"><font style="font-size:14px"><span class="hback_1">
  115.   <%if isrec=1 Then Response.write("<img src=""../images/award.gif"" alt=""推荐"" />")%>
  116.   <strong><%=rs("title")%></strong></span></font><a href="../../<%=G_USER_DIR%>/ShowUser.asp?UserNumber=<% = rs("UserNumber")%>" target="_blank">(<%=GetFriendName(rs("UserNumber"))%>)</a></td>
  117.       <td width="10%"><div align="center">浏览次数:</div></td>
  118.       <td width="17%"><%=rs("hits")%></td>
  119.     </tr>
  120.     <tr class="hback"> 
  121.       <td><div align="center">创建日期:</div></td>
  122.       <td><%=rs("Addtime")%></td>
  123.       <td><div align="center">图片大小:</div></td>
  124.       <td><%=rs("PicSize")%>byte</td>
  125.     </tr>
  126.     <tr class="hback"> 
  127.       <td><div align="center">相片地址:</div></td>
  128.       <td colspan="3"><%=rs("PicSavePath")%></td>
  129.     </tr>
  130.     <tr class="hback"> 
  131.       <td><div align="center">相片描述:</div></td>
  132.       <td colspan="3"><%=rs("Content")%></td>
  133.     </tr>
  134.     <tr class="hback"> 
  135.       <td><div align="center">相片分类:</div></td>
  136.       <td>
  137.         <%
  138. dim c_rs
  139. if rs("ClassID")=0 then
  140. response.Write("没分类")
  141. else
  142. set c_rs=User_Conn.execute("select ID,title From Fs_me_photoclass where id="&rs("classid"))
  143. Response.Write c_rs("title")
  144. c_rs.close:set c_rs=nothing
  145. end if
  146. %>
  147.       </td>
  148.       <td colspan="2"><div align="center"><a href="Photo.asp?id=<%=rs("id")%>&Action=del" onClick="{if(confirm('确定通过删除吗?')){return true;}return false;}">删除</a>  |  
  149.   <a href="Photo.asp?id=<%=rs("id")%>&Action=rec">推荐</a> |
  150.   <a href="Photo.asp?id=<%=rs("id")%>&Action=unrec">取消推荐</a> |
  151.           <input name="ID" type="checkbox" id="ID" value="<%=rs("id")%>">
  152.         </div></td>
  153.     </tr>
  154.     <tr class="hback"> 
  155.       <td colspan="5" height="3" class="xingmu"></td>
  156.     </tr>
  157.     <%
  158. rs.movenext
  159. next
  160. %>
  161.     <tr class="hback"> 
  162.       <td colspan="5"> 
  163.         <%
  164. response.Write "<p>"&  fPageCount(rs,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo)
  165.   end if
  166.   %>
  167.           
  168.         <input name="chkall" type="checkbox" id="chkall" onClick="CheckAll(this.form);" value="checkbox" title="点击选择所有或者撤消所有选择">
  169.         全选择 
  170.         <input name="Action" type="hidden" id="Action"> <input type="button" name="Submit" value="删除"  onClick="document.myform.Action.value='del';{if(confirm('确定清除您所选择的记录吗?')){this.document.myform.submit();return true;}return false;}"></td>
  171.     </tr>
  172.   </form>
  173. </table>
  174. </body>
  175. </html>
  176. <%
  177. Conn.close:set conn=nothing
  178. User_Conn.close:set User_Conn=nothing
  179. %>
  180. <script language="JavaScript" type="text/JavaScript">
  181. function CheckAll(form)  
  182.   {  
  183.   for (var i=0;i<myform.elements.length;i++)  
  184.     {  
  185.     var e = myform.elements[i];  
  186.     if (e.name != 'chkall')  
  187.        e.checked = myform.chkall.checked;  
  188.     }  
  189.   }
  190. </script>