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

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_Inc/Function.asp"-->
  4. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  5. <!--#include file="../../FS_InterFace/NS_Function.asp" -->
  6. <!--#include file="lib/cls_main.asp" -->
  7. <%'CopyRight (c) 2006 Fooun Inc. Code by Simpwind.Xie
  8. response.buffer=true
  9. Response.CacheControl = "no-cache"
  10. Dim Conn,User_Conn
  11. MF_Default_Conn
  12. 'session判断
  13. MF_Session_TF 
  14. '权限判断
  15. 'Call MF_Check_Pop_TF("NS_Class_000001")
  16. '得到会员组列表
  17. dim Fs_news
  18. set Fs_news = new Cls_News
  19. Fs_News.GetSysParam()
  20. Dim str_StyleName,txt_Content,dmt_time,strShowErr,Lableclass_SQL,obj_Lableclass_rs
  21. str_StyleName = Trim(Request.Form("StyleName"))
  22. txt_Content = Trim(Request.Form("TxtFileds"))
  23. if Request.Form("Action") = "add_save" then
  24. if str_StyleName ="" or txt_Content ="" then
  25. strShowErr = "<li>所有都是必须填写的</li><li>请重新填写</li>"
  26. Response.Redirect("lib/Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  27. Response.end
  28. End if
  29. Lableclass_SQL = "Select ClassName,ClassContent from FS_NS_LableClass where ClassName ='"& str_StyleName &"'"
  30. Set obj_Lableclass_rs = server.CreateObject(G_FS_RS)
  31. obj_Lableclass_rs.Open Lableclass_SQL,Conn,1,3
  32. if obj_Lableclass_rs.eof then
  33. obj_Lableclass_rs.addnew
  34. obj_Lableclass_rs("ClassName") = str_StyleName
  35. obj_Lableclass_rs("ClassContent") = txt_Content
  36. obj_Lableclass_rs.update
  37. else
  38. strShowErr = "<li>此分类名称重复,请重新输入</li>"
  39. Response.Redirect("lib/Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  40. Response.end
  41. End if
  42. obj_Lableclass_rs.close:set obj_Lableclass_rs =nothing
  43. strShowErr = "<li>分类添加成功</li>"
  44. Response.Redirect("lib/Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=../Lable_Dir_add.asp")
  45. Response.end
  46. Elseif Request.Form("Action") = "edit_save" then
  47. Lableclass_SQL = "Select ClassName,ClassContent from FS_NS_LableClass where id ="& NosqlHack(Request.Form("ID")) 
  48. Set obj_Lableclass_rs = server.CreateObject(G_FS_RS)
  49. obj_Lableclass_rs.Open Lableclass_SQL,Conn,1,3
  50. if not obj_Lableclass_rs.eof then
  51. obj_Lableclass_rs("ClassName") = str_StyleName
  52. obj_Lableclass_rs("ClassContent") = txt_Content
  53. 'obj_Lableclass_rs("AddDate") =now
  54. obj_Lableclass_rs.update
  55. End if
  56. obj_Lableclass_rs.close:set obj_Lableclass_rs =nothing
  57. strShowErr = "<li>分类修改成功</li>"
  58. Response.Redirect("lib/Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=../Lable_Dir_add.asp")
  59. Response.end
  60. End if
  61. if Request.QueryString("Action") = "del" then
  62. if Request.QueryString("id") = "" or isnumeric(Request.QueryString("id"))=false then
  63. strShowErr = "<li>错误的参数</li>"
  64. Response.Redirect("lib/Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=../Lable_Dir_add.asp")
  65. Response.end
  66. Else
  67. Conn.execute("Delete from FS_NS_LableClass where id ="&clng(Request.QueryString("id")))
  68. Conn.execute("Update  FS_NS_Lable set LabeClassID=0 where LabeClassID="&clng(Request.QueryString("id")))
  69. End if
  70. strShowErr = "<li>删除分类成功</li>"
  71. Response.Redirect("lib/Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=../Lable_Dir_add.asp")
  72. Response.end
  73. End if
  74. %>
  75. <html>
  76. <head>
  77. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  78. <title>标签管理___Powered by foosun Inc.</title>
  79. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  80. </head>
  81. <body>
  82. <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  83.   <tr class="hback"> 
  84.     <td class="xingmu">标签管理<a href="../../help?Lable=NS_Lable_Manage" target="_blank" style="cursor:help;'" class="sd"><img src="../Images/_help.gif" border="0"></a></td>
  85.   </tr>
  86.   <tr> 
  87.     <td height="18" class="hback"><div align="left"><a href="Lable_Manage.asp">管理首页</a> 
  88.         &nbsp;|&nbsp; <a href="Lable_Create.asp?ClassID=<%=Request.QueryString("ClassID")%>">创建标签</a> 
  89.         &nbsp;|&nbsp; <a href="Lable_Dir_add.asp#Add">添加标签栏目</a> &nbsp;|&nbsp; 
  90.         <a href="Lable_style.asp">标签样式管理</a> &nbsp;|&nbsp; <a href="Lable_Manage.asp?Action=del_lable"  onClick="{if(confirm('确认删除吗!')){return true;}return false;}">删除所有标签</a> 
  91.         &nbsp;|&nbsp; <a href="Lable_Manage.asp?Action=del_lable_dir"  onClick="{if(confirm('确认删除吗!')){return true;}return false;}">删除所有标签目录</a> 
  92.         | <a href="../../help?Lable=NS_Lable_Manage_1" target="_blank" style="cursor:help;'" class="sd"><img src="../Images/_help.gif" border="0"></a></div></td>
  93.   </tr>
  94. </table>
  95. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
  96.   <tr class="hback"> 
  97.     <td width="30%" class="xingmu"> <div align="center">分类名称 </div></td>
  98.     <td width="44%" class="xingmu"><div align="center">说明</div></td>
  99.     <td width="26%" class="xingmu"><div align="center">操作</div></td>
  100.   </tr>
  101.   <%
  102. Dim list_SQL,obj_List_rs
  103. list_SQL = "Select top 50 id,ClassName,ClassContent,ParentID from FS_NS_LableClass Order by Id desc"
  104. Set obj_List_rs = server.CreateObject(G_FS_RS)
  105. obj_List_rs.Open list_SQL,Conn,1,3
  106. do while not obj_List_rs.eof 
  107. %>
  108.   <tr class="hback"> 
  109.     <td> · <a href="Lable_Dir_add.asp?id=<% = obj_List_rs("id")%>&Action=edit#add"><% = obj_List_rs("ClassName")%></a></td>
  110.     <td><% = obj_List_rs("ClassContent")%></td>
  111.     <td><div align="center"><a href="Lable_Dir_add.asp?id=<% = obj_List_rs("id")%>&Action=edit#add">修改</a>|<a href="Lable_Dir_add.asp?id=<% = obj_List_rs("id")%>&Action=del" onClick="{if(confirm('确认删除吗!!')){return true;}return false;}">删除</a></div></td>
  112.   </tr>
  113.   <%
  114.   obj_List_rs.movenext
  115.   Loop
  116.   obj_List_rs.close
  117.   set  obj_List_rs = nothing
  118.   %>
  119. </table>
  120. <%
  121. if Request.QueryString("Action")="edit" then
  122. Dim tmp_obj,str_ClassName_e,str_Content_e,str_add,str_id
  123. set tmp_obj = Conn.execute("select id,ClassName,ClassContent from FS_NS_LableClass where id="&nosqlhack(Request.QueryString("id")))
  124. if Not tmp_obj.eof then
  125. str_ClassName_e = tmp_obj("ClassName")
  126. str_Content_e = tmp_obj("ClassContent")
  127. str_id = tmp_obj("id")
  128. End if
  129. str_add = "edit_save"
  130. Else
  131. str_add = "add_save"
  132. End if
  133. %>
  134. <table width="98%" border="0" align="center" cellpadding="4" cellspacing="1" class="table">
  135.   <tr class="xingmu"> 
  136.     <td colspan="2" class="xingmu"><a name="Add" id="Add"></a>创建标签分类 最多允许建立50个分类</td>
  137.   </tr>
  138.   <form name="Lable_Form" method="post" action="">
  139.     <tr class="hback"> 
  140.       <td width="13%"> <div align="right"> 目录名称</div></td>
  141.       <td width="87%"><input name="StyleName" type="text" id="StyleName" value="<% = str_ClassName_e %>" size="40"> 
  142.         <input name="id" type="hidden" id="id" value="<% = str_id %>"></td>
  143.     </tr>
  144.     <tr class="hback"> 
  145.       <td><div align="right">说明内容</div></td>
  146.       <td><textarea name="TxtFileds" rows="15" id="TxtFileds" style="width:90%"><% = str_Content_e %></textarea></td>
  147.     </tr>
  148.     <tr class="hback"> 
  149.       <td>&nbsp;</td>
  150.       <td><input type="submit" name="Submit" value="保存样式"> <input name="Action" type="hidden" id="Action" value="<% = str_add %>"> 
  151.         <input type="reset" name="Submit2" value="重置"></td>
  152.     </tr>
  153.   </form>
  154. </table>
  155. </body>
  156. </html>
  157. <%
  158. set Fs_news = nothing
  159. %>
  160. <!-- Powered by: FoosunCMS4.0系列,Company:Foosun Inc. -->