月耳思进

人生在世如身处荆棘之中,心不动,人不妄动,不动则不伤;如心动则人妄动,伤其身痛其骨,于是体会到世间诸般痛苦。
  首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

统一平台:权限系统二次开发示例

Posted on 2006-07-05 08:50  Xfan  阅读(271)  评论(0编辑  收藏  举报
using JYSoft.Platform.Security.Framework;
using JYSoft.Platform.Security;

namespace PlatformTest
{

    
public class WebForm1 : System.Web.UI.Page
    
{
        
//permissionidentity 许可身份字符串
        private const string strValidate = "JYSoft.DTMIS.WebUI.FuncPages.NotesManage.RequisitionAuditing1.";

        
private void Page_Load(object sender, System.EventArgs e)
        
{
            
            
if(JYSoft.Platform.Security.Framework.AuthorizeService.AuthorizeUIMethod(strValidate))
            
{}
            
else
            
{}
            
        }


        
Web 窗体设计器生成的代码
    }

}