示例#1
0
 public string getData()
 {
     TPortalClass.JpColumns JpColumns = new TPortalClass.JpColumns();
     TPortalClass.JpRoles JpRoles = new TPortalClass.JpRoles();
     DataTable dt = JpColumns.GetFirstlevcolumns_online();
     StringBuilder strShow = new StringBuilder();
     if (dt.Rows.Count > 0)
     {
         for (int i = 0; i < dt.Rows.Count; i++)
         {
             //有下一级文章目录
             if (JpColumns.isHaveSubColumn_online(dt.Rows[i]["cid"].ToString()) == true)
             {
                 //如果需要显示这个栏目(当前栏目有权限要显示,如果当前栏目没权限但是下级栏目有权限也要显示但是不加载链接)
                 if (JpRoles.ifhaveEditorRoleBycidanduid_containsubcid("admin", dt.Rows[i]["cid"].ToString()) == true)
                 {
                     strShow.Append("<li class=\"mui-table-view-cell mui-collapse\"><a class=\"mui-navigate-right\" href=\"javascript:void(0)\">" + dt.Rows[i]["cname"].ToString() + "</a>");
                     strShow.Append("<ul class=\"mui-table-view mui-table-view-chevron\">");
                     strShow.Append(GetNextColumn(dt.Rows[i]["cid"].ToString()));
                     strShow.Append("</ul>");
                     strShow.Append("</li>");
                 }
             }
             else
             {
                 if (JpRoles.ifhaveEditorRoleBycidanduid("admin", dt.Rows[i]["cid"].ToString()) == true)
                 {
                     strShow.Append("<li class=\"mui-table-view-cell mui-collapse\"><a class=\"mui-navigate-right\" href=\"javascript:void(0)\">" + dt.Rows[i]["cname"].ToString() + "</a></li>");
                 }
             }
         }
     }
     return strShow.ToString();
 }
示例#2
0
    private string GetNextColumn(string pis_cid)
    {
        string ls_return = "";

        //得到下级文章目录
        TPortalClass.JpColumns JpColumns = new TPortalClass.JpColumns();
        TPortalClass.JpRoles JpRoles = new TPortalClass.JpRoles();
        DataTable dt = JpColumns.GetSubColumnsOrderbysort_online(pis_cid);
        if (dt.Rows.Count > 0)
        {
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                //有下一级部门
                if (JpColumns.isHaveSubColumn_online(dt.Rows[i]["cid"].ToString()) == true)
                {
                    if (JpRoles.ifhaveEditorRoleBycidanduid_containsubcid("admin", dt.Rows[i]["cid"].ToString()) == true)
                    {
                        if (JpRoles.ifhaveEditorRoleBycidanduid("admin", dt.Rows[i]["cid"].ToString()) == true)
                        {
                            if (JpColumns.isHaveSubColumn_online(dt.Rows[i]["cid"].ToString()) == true)
                            {
                                ls_return += "<li class=\"mui-table-view-cell\">";

                            }
                            else
                            {
                                ls_return += "<li class=\"mui-table-view-cell\" ><a class=\"mui-navigate-right\" href=\"auditSecondList.aspx?cid=" + dt.Rows[i]["cid"].ToString() + "&rend=" + System.Guid.NewGuid().ToString() + "\" ><span class=\"mui-badge mui-badge-warning\">2</span>";
                            }
                        }
                        else
                        {
                            ls_return += "<li class=\"mui-table-view-cell\">";
                        }
                        ls_return += dt.Rows[i]["cname"].ToString() + "</a>";
                        ls_return += "<ul>";
                        ls_return += GetNextColumn(dt.Rows[i]["cid"].ToString());
                        ls_return += "</ul>";
                        ls_return += "</li>";
                    }
                }
                else
                {
                    if (JpRoles.ifhaveEditorRoleBycidanduid("admin", dt.Rows[i]["cid"].ToString()) == true)
                    {
                        ls_return += "<li class=\"mui-table-view-cell\" ><a class=\"mui-navigate-right\" href=\"auditSecondList.aspx?cid=" + dt.Rows[i]["cid"].ToString() + "&rend=" + System.Guid.NewGuid().ToString() + "\" >" + dt.Rows[i]["cname"].ToString() + "<span class=\"mui-badge mui-badge-warning\">2</span></a></li>";
                    }
                }
            }
        }
        return ls_return;
    }
示例#3
0
    private string GetNextColumn(string pis_cid)
    {
        string ls_return = "";

        //得到二级部门
        TPortalClass.JpColumns JpColumns = new TPortalClass.JpColumns();
        TPortalClass.JpRoles JpRoles = new TPortalClass.JpRoles();
        DataTable dt = JpColumns.GetSubColumnsOrderbysort_online(pis_cid);
        if (dt.Rows.Count > 0)
        {
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                //有下一级部门
                if (JpColumns.isHaveSubColumn_online(dt.Rows[i]["cid"].ToString()) == true)
                {
                    if (JpRoles.ifhaveEditorRoleBycidanduid_containsubcid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                    {
                        if (JpRoles.ifhaveEditorRoleBycidanduid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                        {
                            //ls_return += "<li isexpand=\"false\" url=\"article/list_article_fb.aspx?cid=" + dt.Rows[i]["cid"].ToString() + "\">";
                            if (JpColumns.isHaveSubColumn_online(dt.Rows[i]["cid"].ToString()) == true)
                            {
                                ls_return += "<li isexpand=\"false\">";
                            }
                            else
                            {
                                ls_return += "<li isexpand=\"false\" url=\"article/list_article_fb.aspx?cid=" + dt.Rows[i]["cid"].ToString() + "&rnd=" + System.Guid.NewGuid().ToString() + "\">";
                            }
                        }
                        else
                        {
                            ls_return += "<li isexpand=\"false\">";
                        }
                        ls_return += "<span>" + dt.Rows[i]["cname"].ToString() + "</span>";
                        ls_return += "<ul>";
                        ls_return += GetNextColumn(dt.Rows[i]["cid"].ToString());
                        ls_return += "</ul>";
                        ls_return += "</li>";
                    }
                }
                else
                {
                    if (JpRoles.ifhaveEditorRoleBycidanduid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                    {
                        ls_return += "<li url=\"article/list_article_fb.aspx?cid=" + dt.Rows[i]["cid"].ToString() + "&rnd=" + System.Guid.NewGuid().ToString() + "\"><span>";
                        ls_return += dt.Rows[i]["cname"].ToString() + "</span></li>";
                    }
                }
            }
        }
        return ls_return;
    }
示例#4
0
 //显示文章发布栏目
 public string ls_wzfb()
 {
     string ls_return = "";
     if (Session["uid"].ToString() == "")
     {
     }
     else
     {
         DataTable dt = new DataTable();
         //文章发布左侧动态产生
         //得到一级部门
         TPortalClass.JpColumns JpColumns = new TPortalClass.JpColumns();
         TPortalClass.JpRoles JpRoles = new TPortalClass.JpRoles();
         dt = JpColumns.GetFirstlevcolumns_online();
         if (dt.Rows.Count > 0)
         {
             for (int i = 0; i < dt.Rows.Count; i++)
             {
                 //有下一级部门
                 if (JpColumns.isHaveSubColumn_online(dt.Rows[i]["cid"].ToString()) == true)
                 {
                     //如果需要显示这个栏目(当前栏目有权限要显示,如果当前栏目没权限但是下级栏目有权限也要显示但是不加载链接)
                     if (JpRoles.ifhaveEditorRoleBycidanduid_containsubcid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                     {
                         if (JpRoles.ifhaveEditorRoleBycidanduid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                         {
                             ls_return += "<li isexpand=\"false\" >";
                         }
                         else
                         {
                             ls_return += "<li isexpand=\"false\">";
                         }
                         ls_return += "<span>" + dt.Rows[i]["cname"].ToString() + "</span>";
                         ls_return += "<ul>";
                         ls_return += GetNextColumn(dt.Rows[i]["cid"].ToString());
                         ls_return += "</ul>";
                         ls_return += "</li>";
                     }
                 }
                 else
                 {
                     if (JpRoles.ifhaveEditorRoleBycidanduid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                     {
                         ls_return += "<li url=\"article/list_article_fb.aspx?cid=" + dt.Rows[i]["cid"].ToString() + "&rnd=" + System.Guid.NewGuid().ToString() + "\"><span>";
                         ls_return += dt.Rows[i]["cname"].ToString() + "</span></li>";
                     }
                 }
             }
         }
     }
     return ls_return;
 }
示例#5
0
    //得到下一级部门的信息
    private void GetNextColumn(string pis_cid)
    {
        //得到二级部门
        TPortalClass.JpColumns JpColumns = new TPortalClass.JpColumns();
        TPortalClass.JpRoles JpRoles = new TPortalClass.JpRoles();
        DataTable dt = JpColumns.GetSubColumnsOrderbysort_online(pis_cid);
        if (dt.Rows.Count > 0)
        {
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                //有下一级部门
                if (JpColumns.isHaveSubColumn_online(dt.Rows[i]["cid"].ToString()) == true)
                {
                    if (JpRoles.ifhaveEditorRoleBycidanduid_containsubcid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                    {
                        if (JpRoles.ifhaveEditorRoleBycidanduid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                        {
                            //if (JpColumns.isHaveSubColumn_online(dt.Rows[i]["cid"].ToString()) == true)
                            //{
                                //输出二级部门头部
                                Response.Write("<dd class=\"folderClose\">");
                                //Response.Write("<input type=\"checkbox\" name=\"Dept" + dt.Rows[i]["cid"].ToString() + "\" value=\"" + dt.Rows[i]["cid"].ToString() + "\" id=\"" + dt.Rows[i]["cname"].ToString() + "\">");
                                Response.Write("<input type=\"checkbox\" name=\"Dept" + dt.Rows[i]["cid"].ToString() + "\" value=\"\">");
                                Response.Write(dt.Rows[i]["cname"].ToString());
                                Response.Write("<dl>");
                                GetNextColumn(dt.Rows[i]["cid"].ToString());
                                //输出二级部门尾部
                                Response.Write("</dl>");
                                Response.Write("</dd>");
                            //}
                        }
                    }
                }
                else
                {
                    if (JpRoles.ifhaveEditorRoleBycidanduid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                    {
                        //输出二级部门头部
                        Response.Write("<dt>");
                        Response.Write("<input type=\"checkbox\" name=\"Dept" + dt.Rows[i]["cid"].ToString() + "\" value=\"" + dt.Rows[i]["cid"].ToString() + "\" id=\"" + dt.Rows[i]["cname"].ToString() + "\">");
                        Response.Write(dt.Rows[i]["cname"].ToString());
                        //输出二级部门尾部
                        Response.Write("</dt>");
                    }
                }

            }
        }
    }
示例#6
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (this.Session["uid"].ToString() == "")
            this.Response.Redirect("../login.aspx");

        if (!this.IsPostBack)
        {
            TPortalClass.JpColumns JpColumns = new TPortalClass.JpColumns();
            TPortalClass.JpRoles JpRoles = new TPortalClass.JpRoles();

            Response.Write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");
            Response.Write("<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"zh-cn\">");
            Response.Write("<Head><Title>栏目列表</Title>");
            Response.Write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">");
            Response.Write("<meta name=\"generator\" content=\"editplus\" />");
            Response.Write("<link type=\"text/css\" rel=\"stylesheet\" href=\"hyhtml/ltree/resources/css/lTREE.checkbox.css\" />");
            Response.Write("<style type=\"text/css\">");
            Response.Write("#lTREEMenuDEMO {border:1px solid #ccc;margin:3px;padding:3px;}");
            Response.Write("#infoBox {position:absolute;left:450px;top:40px;border:1px solid #ccc;width:400px;padding:0 10px;font-family:\"宋体\",Geneva,Arial,sans-serif;line-height:150%;}");
            Response.Write("#debugMSG strong {color:#f00;}");
            Response.Write("</style>");
            Response.Write("<!--[if IE 6]>");
            Response.Write("<script>");
            Response.Write("document.execCommand(\"BackgroundImageCache\", false, true);");
            Response.Write("</script>");
            Response.Write("<![endif]-->");
            Response.Write("</Head>");
            Response.Write("<body style=\"padding:2px;\">");
            //Response.Write("<form>");

            Response.Write("<div class=\"lTREEMenu lTREENormal\" id=\"lTREEMenuDEMO\">");
            Response.Write("<dl>");

            Response.Write("<dl>");
            //Response.Write("<dd><input type=\"checkbox\" name=\"SelAll\" value=\"全选\" onclick=\"SelectAll();\" style=\"width:13;\"> <b>栏目列表</b>");
            Response.Write("<dd>&nbsp;<b>栏目列表</b>");
            Response.Write("<dl>");

            //得到一级栏目
            DataTable dt = JpColumns.GetFirstlevcolumns_online();
            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    //有下一级部门
                    if (JpColumns.isHaveSubColumn_online(dt.Rows[i]["cid"].ToString()) == true)
                    {
                        //如果需要显示这个栏目(当前栏目有权限要显示,如果当前栏目没权限但是下级栏目有权限也要显示但是不加载链接)
                        if (JpRoles.ifhaveEditorRoleBycidanduid_containsubcid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                        {
                            //输出一级部门头部
                            Response.Write("<dd class=\"folderClose\">");
                            //Response.Write("<input type=\"checkbox\" name=\"Dept" + dt.Rows[i]["cid"].ToString() + "\" value=\"" + dt.Rows[i]["cid"].ToString() + "\" id=\"" + dt.Rows[i]["cname"].ToString() + "\">");
                            Response.Write("<input type=\"checkbox\" name=\"Dept" + dt.Rows[i]["cid"].ToString() + "\" value=\"\">");
                            Response.Write(dt.Rows[i]["cname"].ToString());
                            Response.Write("<dl>");
                            GetNextColumn(dt.Rows[i]["cid"].ToString());
                            //输出一级部门尾部
                            Response.Write("</dl>");
                            Response.Write("</dd>");
                        }
                    }
                    else
                    {
                        if (JpRoles.ifhaveEditorRoleBycidanduid(Session["uid"].ToString(), dt.Rows[i]["cid"].ToString()) == true)
                        {
                            //输出一级部门头部
                            Response.Write("<dt>");
                            Response.Write("<input type=\"checkbox\" name=\"Dept" + dt.Rows[i]["cid"].ToString() + "\" value=\"" + dt.Rows[i]["cid"].ToString() + "\" id=\"" + dt.Rows[i]["cname"].ToString() + "\">");
                            Response.Write(dt.Rows[i]["cname"].ToString());
                            //输出一级部门尾部
                            Response.Write("</dt>");
                        }
                    }
                }
            }

            Response.Write("</dl>");
            Response.Write("</dd>");
            Response.Write("</dl>");
            Response.Write("</div>");

            Response.Write("<script type=\"text/javascript\" src=\"hyhtml/ltree/js/lTREE.js\"></script>");
            Response.Write("<script class=\"lJSFDemo\" type=\"text/javascript\"> ");
            Response.Write("        var lTree = new lTREE();");
            Response.Write("        lTree.config({");
            Response.Write("	        path	: \"dl dd\"");
            Response.Write("        });");
            Response.Write("        lTree.tagName({");
            Response.Write("	        folder	: \"DD\",");
            Response.Write("	        file	 	: \"DT\"");
            Response.Write("        });");
            Response.Write("        lTree.className({");
            Response.Write("	        folderClose	: \"folderClose\",");
            Response.Write("	        lastChild	 	: \"lastChild\"");
            Response.Write("        });");
            Response.Write("var t=new Date(),timer=[];");
            Response.Write("lTree.build(\"lTREEMenuDEMO\");");
            Response.Write("timer.push(new Date()-t);");
            /**************************************
            * 给树内所有复选框添加相应事件 *
            * Start */
            Response.Write("function chkAll(){");
            Response.Write("var a=this.parentNode.getElementsByTagName(\"input\"),b=this.checked;");
            Response.Write("for(var i=0,l=a.length; i<l;i++) {");
            Response.Write("a[i].checked=b;");
            Response.Write("}");
            Response.Write("}");
            Response.Write("function chkOne(){");
            Response.Write("var a=this,b=this.checked,p=lDOM.$(\"lTREEMenuDEMO\"),pn=null;");
            Response.Write("while(a.tagName!=\"DD\" && a!=p) a=a.parentNode;");
            Response.Write("pn=a.getElementsByTagName(\"input\");");
            Response.Write("if(b){");
            Response.Write("for(var i=1,l=pn.length; i<l;i++) {");
            Response.Write("if(!pn[i].checked){");
            Response.Write("b=false;");
            Response.Write("break;");
            Response.Write("}");
            Response.Write("}");
            Response.Write("}");
            Response.Write("pn[0].checked=b;");
            Response.Write("}");
            Response.Write("var arrCHK=lDOM.find(\"dl dd input\",lDOM.$(\"lTREEMenuDEMO\"),{type:\"checkbox\"});");
            Response.Write("arrCHK.each(function(s){");
            Response.Write("if(s.parentNode.tagName==\"DT\"){");
            Response.Write("s.onclick=chkOne;");
            Response.Write("} else {");
            Response.Write("s.onclick=chkAll;");
            Response.Write("}");
            Response.Write("});");
            Response.Write("      </script>");

            //Response.Write("</form>");
            Response.Write("</Body></HTML>");
        }
    }