This topic is locked

Multiple Login

1/2/2007 20:20:08
ASPRunnerPro General questions
S
SDDivine author

I have an application where I want more than one person to login at the same time using a user password for a read only project. Is that possible. What the second person is getting is a message that says your session has expired. How can I change that?
Steve Divine

Sergey Kornilov admin 1/2/2007

Stevel
nothing prevents you from using the same login info by two people simultaneously.
I proceed to ASPRunnerPro live demo, open it in two separate browser windows and login using the same username and poassword.

Both applications work just fine.
Probably you have some additional info on this issue.

S
SDDivine author 1/2/2007

Further information....I'm trying to hide the domain where the database resides...so I set the access to the database in a framed page...where the address bar shows a common address and the login screen shows up in a bottom window.
example is http://www.nacelsouth.org/profiles
When I enter the login and password, I get this session expired message. I first thought it was because more than one person was logging in at a time, but now I'm wondering if its because the active window is not the main window. Is that possible?
If so, is there a way that I can correct that with code, or have I entirely misunderstood?
Steve Divine

Sergey Kornilov admin 1/3/2007

Steve,
sessions won't work with this setup.
Session is tied to specific URL. If you display ASP pages in the frame that belongs to another website it simply won't work.

Sessions can't be shared between different websites.

S
SDDivine author 1/24/2007

Steve,

sessions won't work with this setup.
Session is tied to specific URL. If you display ASP pages in the frame that belongs to another website it simply won't work.

Sessions can't be shared between different websites.


Thank you. I have pretty much figured that this was a problem, but I needed you to confirm that. I've adjusted my program to solve that. Steve