标签: asp.net forms-authentication
我觉得Request.ServerVariables("AUTH_USER")和User.Identity.Name在使用FormsAuthentication.时会返回相同的字符串
Request.ServerVariables("AUTH_USER")
User.Identity.Name
FormsAuthentication.
所以我的问题很简单。我应该更好地使用哪一个?
答案 0 :(得分:1)
它们确实返回相同的值,ServerVariables仅用于向后兼容遗留代码。通常您应该使用User.Identity.Name。