LoggedIn Event When Using Windows Authentication?

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
 
B

bruce barker

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top