[转贴]Forms authentication and role-based security

// Create the authentication ticket

FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket(

                                    1,                          //version

                                    txtUserName.Text,           // user name

                                    DateTime.Now,               // creation

                                    DateTime.Now.AddMinutes(60),//Expiration

                                    false,                      //Persistent

                                    String.Join( "|", roles));  // User data

 

// Now encrypt the ticket.

string encryptedTicket = FormsAuthentication.Encrypt(authTicket);

// Create a cookie and add the encrypted ticket to the cookie as data.

HttpCookie authCookie = new HttpCookie(FormsAuthentication.FormsCookieName,

                                                               encryptedTicket);

 

// Add the cookie to the outgoing cookies collection.

Response.Cookies.Add(authCookie);

 

// Redirect the user to the originally requested page

Response.Redirect(FormsAuthentication.GetRedirectUrl(txtUserName.Text, false));

Compare with the proposed approach:

 

 

  // Get the cookie created by the FormsAuthentication API

  // Notice that this cookie will have all the attributes according to  

  // the ones in the config file setting.      

  HttpCookie cookie = FormsAuthentication.GetAuthCookie( UserId.Text, false );

  FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt(cookie.Value);

 

  // Store roles inside the Forms Ticket with all the attributes aligned with

  // the config Forms section.

  FormsAuthenticationTicket newticket = new FormsAuthenticationTicket(                                                              ticket.Version,                                                               ticket.Name,                                                                  ticket.IssueDate,                                                             ticket.Expiration,                                                            ticket.IsPersistent,                                                          String.Join( "|", roles),

                                                      ticket.CookiePath);          

  // add the encrypted ticket to the cookie as data.                                        

  cookie.Value = FormsAuthentication.Encrypt(newticket);

  // Update the outgoing cookies collection.

  Context.Response.Cookies.Set(cookie);

 

  // Redirect the user to the originally requested page

  Response.Redirect( FormsAuthentication.GetRedirectUrl( newticket.Name,

                                                     newticket.IsPersistent ) );

 

<configuration>   

  <system.web>

 

    <authentication mode="Forms">

            <forms loginUrl="Secure/login.aspx"

                  protection="All"             

                  requireSSL="true"            

                  timeout="10"                 

                  name="FormsAuthCookie"         

                  path="/FormsAuth"            

                  slidingExpiration="true" />   

    </authentication>

 

  </system.web> 

</configuration>

具体例子请参照http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/SecNetHT04.asp?frame=true

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值