コード例 #1
0
        public void GetMenu(HttpContext context)
        {
            List <Menu> list   = new RoleCompetenceManager().GetAllMenu(GetUser(context).RoleId);
            string      strTxt = Json.ListToJson(list);

            context.Response.Write(strTxt);
        }
コード例 #2
0
ファイル: GetMenu.ashx.cs プロジェクト: thomas0611/5577yx
        public void GetCompetence(HttpContext context)
        {
            List <Competence> List   = new RoleCompetenceManager().GetAllCompetence();
            string            StrTxt = Json.ListToJson(List);

            context.Response.Write(StrTxt);
        }