windows/form认证后执行自定义代码
我实现了 Web 应用程序(C#、ASP.NET),根据客户需求,使用 Windows 或表单身份验证。现在,我需要一种在用户登录后执行自定义代码的方法。代码必须仅执行一次,并且应该适用于两种类型的身份验证。它不需要位于同一位置,但必须在身份验证成功后执行。
谢谢。
I implemented web application (C#, ASP.NET) that, depending on customer demands, uses windows or forms authentication. Now, I need a way to execute custom code after user logs in. Code must be executed only once and should work for both types of authentication. It doesn't need to be in same place but it must execute after successful authentication.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 Global.asax 中处理 FormsAuthentication_OnAuthenticate
处理表单身份验证事件
You can handle FormsAuthentication_OnAuthenticate in Global.asax
Handling Forms Authentication Events
我确信 ASP.NET 提供了 OnAuthenticated 事件。
I am sure ASP.NET provides
OnAuthenticated
events.