how to get a list of users currenltly logged in(Authenticated) to IIS6
Need to get a list of currently loggedn in(authenticated) users from IIS6, and to display t开发者_运维百科hem in updatepanel (ajax).
IIS6 does not have any authentication system/module in itself. You need to have a membership provider. In such a case, you might query the provider for the currently logged in users.
Alternatively, if you are using session for keeping the authenticated user, you might ad an Application variable and update it with currently logged in used upon every successful authentication or sign out/session obsolescence.
Let us know, how you are doung the authentication.
精彩评论