嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
c#实现如何树形管理权限
实现了树形管理权限的操作(附源码、数据库),根据数据库动态内容构建权限树,修改后可保存
.
├── c#实现如何树形管理权限_权限和树(复杂版).rar
└── 权限和树( 复杂版)
├── GrantBLL
│ ├── GrantBLL.csproj
│ ├── GrantManger.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RoleGrantManager.cs
│ ├── RoleManager.cs
│ ├── bin
│ │ └── Debug
│ │ ├── GrantBLL.dll
│ │ ├── GrantBLL.pdb
│ │ ├── GrantDAL.dll
│ │ └── GrantDAL.pdb
│ └── obj
│ ├── Debug
│ │ ├── GrantBLL.dll
│ │ ├── GrantBLL.pdb
│ │ ├── Refactor
│ │ │ └── GrantBLL.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── GrantBLL.csproj.FileList.txt
│ └── GrantBLL.csproj.FileListAbsolute.txt
├── GrantDAL
│ ├── DBHelper.cs
│ ├── GrantDAL.csproj
│ ├── GrantService.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RoleGrantService.cs
│ ├── RoleService.cs
│ ├── bin
│ │ └── Debug
│ │ ├── GrantDAL.dll
│ │ └── GrantDAL.pdb
│ └── obj
│ ├── Debug
│ │ ├── GrantDAL.dll
│ │ ├── GrantDAL.pdb
│ │ ├── Refactor
│ │ │ └── GrantDAL.dll
│ │ └── TempPE
│ ├── GrantDAL.csproj.FileList.txt
│ └── GrantDAL.csproj.FileListAbsolute.txt
├── WindowsApplication1
│ ├── FormMain.Designer.cs
│ ├── FormMain.cs
│ ├── FormMain.resx
│ ├── FormShowGrant.Designer.cs
│ ├── FormShowGrant.cs
│ ├── FormShowGrant.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── WindowsApplication1.csproj
│ ├── WindowsApplication1.sln
│ ├── WindowsApplication1.suo
│ ├── bin
│ │ └── Debug
│ │ ├── GrantBLL.dll
│ │ ├── GrantBLL.pdb
│ │ ├── GrantDAL.dll
│ │ ├── GrantDAL.pdb
│ │ ├── WindowsApplication1.exe
│ │ ├── WindowsApplication1.pdb
│ │ └── WindowsApplication1.vshost.exe
│ └── obj
│ ├── Debug
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── WindowsApplication1.FormMain.resources
│ │ ├── WindowsApplication1.FormShowGrant.resources
│ │ ├── WindowsApplication1.Properties.Resources.resources
│ │ ├── WindowsApplication1.csproj.GenerateResource.Cache
│ │ ├── WindowsApplication1.exe
│ │ └── WindowsApplication1.pdb
│ ├── WindowsApplication1.csproj.FileList.txt
│ └── WindowsApplication1.csproj.FileListAbsolute.txt
├── grant.mdf
└── grant_log.ldf
25 directories, 62 files