表单身份验证,更改当前经过身份验证的广告用户表单代码
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
未经测试:这应该替换您的 Cookie,但我不认为您的委托人已被替换。尝试重置校长。
只是一个想法...
Without testing: this should replace your Cookie, but I dont think, that you Principal is been replaced. Try to reset the Principal.
Just a thought...