asp.net 使用者角色管理

iDotNetSpace發表於2009-12-10

1. 配置web.config

   <1>.允許使用者角色管理,cookie中快取角色資訊

    

 <2>.設定安全身份驗證方式

  

    

  

  

    

  

  <3>.根據使用者角色設定訪問路徑

  

    

      

        

        

      

    

  

 

  

    

      

        

        

      

    

  

2.登入介面,使用者登入時管理使用者角色

  userrole: 角色

  if(Roles.RoleExists(userrole))   //判斷使用者角色是否存在

  {

    FormsAuthentication.RedirectFromLoginPage(username,false);

  }

  else

  {

    Roles.CreateRole(userrole);

    Roles.AddUserToRole(username,userrole);

    FormsAuthentication.RedirectFromLoginPage(username,false);

  }

  

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-622134/,如需轉載,請註明出處,否則將追究法律責任。

相關文章