当前位置: 代码迷 >> ASP.NET >> 请教这个方法起什么作用FormsAuthentication.SetAuthCookie 方法 (String, Boolean)
  详细解决方案

请教这个方法起什么作用FormsAuthentication.SetAuthCookie 方法 (String, Boolean)

热度:5117   发布时间:2013-02-25 00:00:00.0
请问这个方法起什么作用FormsAuthentication.SetAuthCookie 方法 (String, Boolean)
请问这个方法起什么作用FormsAuthentication.SetAuthCookie   方法   (String,   Boolean)

------解决方案--------------------------------------------------------
http://msdn2.microsoft.com/zh-cn/library/twk5762b(vs.80).aspx

可以参考
http://www.microsoft.com/china/msdn/library/webservices/asp.net/PAGExplained0002.mspx?mfr=true

http://chs.gotdotnet.com/quickstart/aspplus/doc/formsauth.aspx
------解决方案--------------------------------------------------------
第一个参数决定了你的Context.User.Identity.Name
第二个参数决定了是否保存Cookie
------解决方案--------------------------------------------------------
这个FormsAuthentication.SetAuthCookie仅仅是发放了票据,只有在通过你的验证逻辑后,才可以发放票据.也就是说你的这段代码上还需要加上登录验证.
  相关解决方案