connection

connection

am 15.01.2006 22:57:02 von Souris

Does ASP take care of multi user log in?

For example, The first user hit login page and enter user name and password.
ASP engine sends data to first user.

What happens if second user online. Does ASP ask second user to login again.
ASP should send out different data to second user.

I mean my code does not need take care of this multi user issues.

Thanks millions,

Re: connection

am 16.01.2006 05:38:52 von Paul

No, you should be alright because each user has his own session.

Classic ASP Design Tips - Login Page
http://www.bullschmidt.com/devtip-loginpage.asp

Best regards,
J. Paul Schmidt, Freelance Web and Database Developer
http://www.Bullschmidt.com
Access Database Sample, Web Database Sample, ASP Design Tips

Souris wrote:
> Does ASP take care of multi user log in?
>
> For example, The first user hit login page and enter user name and password.
> ASP engine sends data to first user.
>
> What happens if second user online. Does ASP ask second user to login again.
> ASP should send out different data to second user.
>
> I mean my code does not need take care of this multi user issues.
>
> Thanks millions,