LoggedIn Event When Using Windows Authentication?

  • Thread starter Thread starter RustyHill
  • Start date Start date
R

RustyHill

Previously we were using Forms authentication and had logic in the LoggedIn
event of the ASP.Net Login control.

Now that we are switching over to Windows Authentication using Active
Directory where should I put the code that I want run when the user is
logged in? Thanks
 
with windows authentication, there is no logged in event. the user is
authentication on every page request (instead of using a ticket stored
in a cookie). you can create a logged-in cookie to emulate the event or
use session.

-- bruce (sqlwork.com)
 
Back
Top