It sounds like you should be using the Session object instead of global
variables.
Session applies only to the current user.
Session("UserType")="Admin"
Here's more info:
http://msdn.microsoft.com/library/de...ssiontopic.asp
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"bbdobuddy" <(E-Mail Removed)> wrote in message
news:87314A6C-B34A-4CE3-ADE0-(E-Mail Removed)...
> Hi,
>
> I got an ASP.net application that has some global variables that tells the
> program what type of user they are but when multiple people are logged in
> everyone gets set to the same type of user. How can I fix this?