我正在将应用程序从asp.net 2.0迁移到asp.net 4.5,我遇到了windowsauthentication_onauthenticate函数的问题。应用程序运行时不会被触发?
在Global.asax中,我有以下功能:
Protected Sub WindowsAuthentication_OnAuthenticate(ByVal sender As Object, ByVal e As WindowsAuthenticationEventArgs)
If Not (e.Identity Is Nothing) AndAlso e.Identity.IsAuthenticated Then
.....
.....
End If
End Sub
我尝试了this链接中的一些内容 (第10点与我的相似,但我仍然得到错误)
任何人都可以建议我,我该怎么办呢?