使用带有匿名身份验证的ASP .Net应用程序,需要在HttpContext.Current.User.Identity.Name
文件中设置web.config
的值,以便为每个请求分配值。
答案 0 :(得分:0)
HttpContext.Current.User对象仅适用于.Net Frameworks集成身份验证框架(使用Forms或Windows身份验证),无法以编程方式设置。 如果您在每个请求中都需要web.config中的值,我建议您只使用
读取web.config中设置的值。System.Configuration.ConfigurationManager.AppSettings[key]