Photo_Class.asp
资源名称:eat.rar [点击查看]
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:8k
源码类别:
数据库编程
开发平台:
ASP/ASPX
- <% Option Explicit %>
- <!--#include file="../FS_Inc/Const.asp" -->
- <!--#include file="../FS_Inc/Function.asp" -->
- <!--#include file="../FS_InterFace/MF_Function.asp" -->
- <!--#include file="lib/strlib.asp" -->
- <!--#include file="lib/UserCheck.asp" -->
- <!--#include file="../FS_Inc/Func_Page.asp" -->
- <%
- Dim rs
- if request("Action")="del" then
- if Request("id")="" then
- strShowErr = "<li>错误的参数!</li>"
- Response.Redirect("lib/error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
- Response.end
- else
- User_Conn.execute("Delete from FS_ME_PhotoClass where UserNumber='"&Fs_User.UserNumber&"' and ID ="&NoSqlHack(Request("id")))
- User_Conn.execute("update FS_ME_Photo set Classid=0 where UserNumber='"&Fs_User.UserNumber&"' and ClassID="&NoSqlHack(Request("id")))
- set User_Conn=nothing:set Fs_User=nothing
- strShowErr = "<li>删除成功!</li>"
- Response.Redirect("lib/Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=../Photo_Class.asp")
- Response.end
- end if
- end if
- if Request.Form("Action")="add_save" then
- set rs= Server.CreateObject(G_FS_RS)
- rs.open "select title,id,UserNumber From FS_ME_PhotoClass where title='"&trim(Request.Form("title"))&"' and UserNumber='"&Fs_User.UserNumber&"'",User_Conn,1,3
- if not rs.eof then
- rs.close:Set rs=nothing
- set User_Conn=nothing:set Fs_User=nothing
- strShowErr = "<li>此相册已经存在!</li>"
- Response.Redirect("lib/error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
- Response.end
- else
- rs.addnew
- rs("title")=replace(trim(request.Form("title")),"'","")
- rs("UserNumber")=Fs_User.UserNumber
- rs.update
- rs.close:Set rs=nothing
- set User_Conn=nothing:set Fs_User=nothing
- strShowErr = "<li>添加成功!</li>"
- Response.Redirect("lib/Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=../Photo_Class.asp")
- Response.end
- end if
- end if
- if Request.Form("Action")="edit_save" then
- set rs= Server.CreateObject(G_FS_RS)
- rs.open "select title,id,UserNumber From FS_ME_PhotoClass where id="&clng(trim(Request.Form("id")))&" and UserNumber='"&Fs_User.UserNumber&"'",User_Conn,1,3
- rs("title")=replace(trim(request.Form("title")),"'","")
- rs.update
- rs.close:Set rs=nothing
- set User_Conn=nothing:set Fs_User=nothing
- strShowErr = "<li>修改成功!</li>"
- Response.Redirect("lib/Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=../Photo_Class.asp")
- Response.end
- end if
- %>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <title>相册管理-网站内容管理系统</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> >> <a href="PhotoManage.asp">相册管理</a>
- >>分类管理</td>
- </tr>
- </table>
- <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
- <tr>
- <td class="hback"><a href="PhotoManage.asp">相册首页</a>┆<a href="Photo_add.asp">增加图片</a>┆<a href="PhotoManage.asp?isRec=1">被推荐的图片</a>┆<a href="Photo_filt.asp">幻灯片播放</a>┆<a href="Photo_Class.asp">相册分类</a>┆<a href="Photo_Class.asp?Action=add">增加分类</a></td>
- </tr>
- <tr>
- <td class="hback">
- <%
- response.Write(" <table width=""98%"" align=center cellpadding=""2"" cellspacing=""1""><tr>")
- dim t_k
- t_k=0
- set rs = Server.CreateObject(G_FS_RS)
- rs.open "select id,title,UserNumber From FS_ME_PhotoClass where UserNumber='"&Fs_User.UserNumber&"'",User_Conn,1,3
- do while not rs.eof
- Response.Write(" <td width=""24%"" valign=bottom><img src=""images/folderopened.gif""></img><a href=PhotoManage.asp?classid="&rs("id")&" title=""点击查看此分类下的图片"">"&rs("title")&"</a><a href=Photo_Class.asp?id="&rs("id")&"&Action=edit><修改></a><a href=""Photo_Class.asp?Action=del&id="&rs("id")&""" onClick=""{if(confirm('确定删除吗?')){return true;}return false;}""><删除></a></td>")
- rs.movenext
- t_k = t_k+1
- if t_k mod 4 =0 then
- Response.Write(" </tr>")
- end if
- loop
- response.Write(" </table>")
- rs.close:set rs=nothing
- %>
- </td>
- </tr>
- </table>
- <%if NoSqlHack(Request.QueryString("Action"))="add" then%>
- <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
- <form name="form1" method="post" action="">
- <tr>
- <td colspan="2" class="xingmu">增加相册分类</td>
- </tr>
- <tr>
- <td width="24%" class="hback"><div align="right">相册分类名称</div></td>
- <td width="76%" class="hback"><input name="title" type="text" id="title" value="<%=date()%>" size="40"></td>
- </tr>
- <tr>
- <td class="hback"><div align="right"></div></td>
- <td class="hback"><input type="submit" name="Submit" value="增加相册分类">
- <input name="Action" type="hidden" id="Action" value="add_save"></td>
- </tr>
- </form>
- </table>
- <%end if%>
- <%if NoSqlHack(Request.QueryString("Action"))="edit" then
- if NoSqlHack(request.QueryString("id"))="" then
- rs.close:set rs=nothing
- set User_Conn=nothing:set Fs_User=nothing
- response.Write("错误的参数")
- response.end
- end if
- set rs= Server.CreateObject(G_FS_RS)
- rs.open "select id,title,UserNumber From FS_ME_PhotoClass where id="&NoSqlHack(request.QueryString("id")),User_Conn,1,3
- %>
- <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
- <form name="form1" method="post" action="">
- <tr>
- <td colspan="2" class="xingmu">修改相册分类</td>
- </tr>
- <tr>
- <td width="24%" class="hback"><div align="right">相册分类名称</div></td>
- <td width="76%" class="hback"><input name="title" type="text" id="title" value="<%=rs("title")%>" size="40"><input name="id" type="hidden" id="id" value="<%=rs("id")%>" size="40"></td>
- </tr>
- <tr>
- <td class="hback"><div align="right"></div></td>
- <td class="hback"><input type="submit" name="Submit2" value="修改相册分类">
- <input name="Action" type="hidden" id="Action" value="edit_save"></td>
- </tr>
- </form>
- </table>
- <%end if%>
- </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
- %>
- <!--Powsered by Foosun Inc.,Product:FoosunCMS V4.0系列-->