表单身份验证,更改当前经过身份验证的广告用户表单代码

发布于 2024-08-08 00:34:53 字数 216 浏览 1 评论 0原文

在 ASP.Net 中,表单身份验证,出于测试目的,我们需要使当前登录到我们应用程序的 QA 用户能够输入 AD 广告用户名,并以该用户身份登录。

我认为

FormsAuthentication.SignOut(); FormsAuthentication.SetAuthCookie(用户名, false);

可以解决这个问题,但事实并非如此。 谁能指出我正确的方向?

in ASP.Net, forms authentication, For Testing purposes, we need to enable our QA users who are currently logged into our app to be able to enter an AD ad username, and get logged in as that user.

I thought that

FormsAuthentication.SignOut();
FormsAuthentication.SetAuthCookie(userName, false);

Would do the trick, but it does not.
can anyone point me in the right direction?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

§对你不离不弃 2024-08-15 00:34:53

未经测试:这应该替换您的 Cookie,但我不认为您的委托人已被替换。尝试重置校长。

HttpContext.Current.User = new GenericPrincipal(...);

只是一个想法...

Without testing: this should replace your Cookie, but I dont think, that you Principal is been replaced. Try to reset the Principal.

HttpContext.Current.User = new GenericPrincipal(...);

Just a thought...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文