Constr_Manage.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_InterFace/ns_Function.asp" -->
  5. <!--#include file="../../FS_Inc/Function.asp" -->
  6. <%'Copyright (c) 2006 Foosun Inc. Code by Einstein.Liu
  7. Dim Conn,Constr_Rs,sql_cmd,AuditTF,classid
  8. MF_Default_Conn
  9. MF_Session_TF
  10. if not MF_Check_Pop_TF("NS_Constr") then Err_Show
  11. Set Constr_Rs=server.CreateObject(G_FS_RS)
  12. sql_cmd="Select id,ClassID,ClassName,ParentID from FS_NS_NewsClass where parentID='0' and isConstr=1"
  13. Constr_Rs.open sql_cmd,Conn,1,1
  14. %>
  15. <html>
  16. <head>
  17. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  18. <title>CMS4.0</title>
  19. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  20. <script language='javascript' src="../../FS_Inc/prototype.js"></script>
  21. </head>
  22. <body>
  23. <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  24.   <tr class="xingmu"> 
  25.     <td colspan="10" class="xingmu"><a href="#" onmouseover="this.T_BGCOLOR='#404040';this.T_FONTCOLOR='#FFFFFF';return escape('<div align='center'>FoosunCMS4.0<br> Code by 刘南兵 <BR>Copyright (c) 2006 Foosun Inc</div>')" class="sd"><strong>投稿管理</strong></a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../help?Lable=News_Manage" target="_blank" style="cursor:help;'" class="sd"> 帮助</a></td>
  26.   </tr>
  27.   <tr class="hback">
  28.   <td colspan="10">选择分类:
  29.   <span id="span_constrClass_0">
  30.   <!---联动菜单开始--->
  31.   <%
  32.    Response.Write("<select name=""sel_constrClass"" name=""sel_constrClass"" onchange=""getChildClass(this,0)"">")
  33.     Response.Write("<option value="""">所有分类</option>")
  34. Dim p_temp_index
  35.    while not Constr_Rs.eof
  36. Response.Write("<option value="""&Constr_Rs("id")&""">"&Constr_Rs("ClassName")&"</option>")
  37. Constr_Rs.movenext
  38. wend 
  39. Response.Write("</select>")
  40.   %>
  41. </span>
  42. <span id="span_constrClass_1"></span>
  43. <span id="span_constrClass_2"></span>
  44. <span id="span_constrClass_3"></span>
  45. <span id="span_constrClass_4"></span>
  46. <span id="span_constrClass_5"></span>
  47. <span id="span_constrClass_6"></span>
  48. <span id="span_constrClass_7"></span>
  49. <!---联动菜单结束--->
  50.    <span id="span_audit">已审核<input type="checkbox" name="audit" value="1" onClick="auditView(this);"></span>
  51.   </td>
  52.   </tr>
  53.   <tr class="hback">
  54.   <td colspan="10"><iframe id="contrList" src="Constr_list.asp" frameborder="0" width="100%" height="600"></iframe></td>
  55.   </tr>
  56. </table>
  57. <input type="hidden" name="hd_classid" />
  58. <input type="hidden" name="hd_audit" />
  59. <script language="javascript" type="text/javascript" src="../../FS_Inc/wz_tooltip.js"></script>
  60. </body>
  61. </html>
  62. <script language="JavaScript">
  63. //转到相应的分类下面
  64. function getChildClass(Obj,index)
  65. {
  66. var classid=Obj.value;
  67. if(classid=="")
  68. {
  69. var elements=Obj.parentNode.parentNode.childNodes;
  70. for(var i=2;i<elements.length-3;i++)
  71. {
  72. elements[i].innerHTML=""
  73. /*
  74. if(current.firstChild!=null)
  75. current.removeChild(current.firstChild);*/
  76. }
  77. }
  78. var container="span_constrClass_"+(index+1);
  79. $(container).innerHTML="<img src='../../sys_images/small_loading.gif'/>";
  80. var AjaxObj=new Ajax.Updater(container,'getClass.asp?and='+Math.random(),{method:'get',parameters:"index="+index+"&classid="+classid});
  81. $('contrList').src="constr_list.asp?classid="+classid+"&audittf="+$('hd_audit').value+"&rnd="+Math.random();
  82. }
  83. function auditView(Obj)
  84. {
  85. if(Obj.checked)
  86. {
  87. $('contrList').src="constr_list.asp?classid="+$('hd_classid').value+"&audittf="+1+"&rnd="+Math.random();
  88. }else
  89. {
  90. $('contrList').src="constr_list.asp?classid="+$('hd_classid').value+"&audittf="+0+"&rnd="+Math.random();
  91. }
  92. }
  93. </script>
  94. <%
  95. Constr_Rs.close
  96. Conn.close
  97. Set Conn=nothing
  98. Set Constr_Rs=nothing
  99. %>
  100. <!-- Powered by: FoosunCMS4.0系列,Company:Foosun Inc. -->