Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

website to track logged-in user to server 1

Status
Not open for further replies.

JacobTechy

Programmer
Apr 14, 2005
181
US
We have about 4 techies that access an email server remotely. The problem we are seeing is that we do not know who is logged in at the time and thus we tend to log people out while they are doing something in the email server.
My solution to this is to create a webpage in our intranet that has the field: "User currently logged in" and there would be a drop down box for user selection or user can type their name in the box and also a date field which would get updated. Can someone recommend a language to do this in. I am thinking asp combined with our sql db server. Any ideas.

Thanks
 
I have something similar in place, except I use PHP.

When the user logs in using a standard form, their credentials are authenticated against LDAP. I store the users' name in a session variable, so on every page they're on, it shows: "Logged on as username". No need to have a text box or select list. (I'm sure you could accomplish the same in ASP).

Using that session varialbe, you could then write to a database if need be.

[cheers]
Cheers!
Laura
 
Any possiblty you can pass me this information or code so I can do the same. the emails server is on windows xp
 
Unfortunately, I cannot do so. Google the term session variables PHP (or ASP) and you should be able to find some snippets.

[cheers]
Cheers!
Laura
 
We log into windows xp remote desktop domain window not an actual webpage
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top