Session Problems

R

Rarger

I have a web application. It come up with multi-user access problem.
When User A login and then User B login, User A created a item and
saved the item.. The Created by and Updated By are by User B. I think
the session of application has been confused when multiple- user using
the application together.

My Session state is:
<sessionState
  mode="InProc"
  cookieless="false"
  timeout="60"
/>

Can anyone tell me what's wrong with it??

thx in advance!

Regards,
Gerard
 
H

Hans Kesting

Rarger formulated the question :
I have a web application. It come up with multi-user access problem.
When User A login and then User B login, User A created a item and
saved the item.. The Created by and Updated By are by User B. I think
the session of application has been confused when multiple- user using
the application together.

My Session state is:
<sessionState
ãÀ€ãÀ€mode="InProc"
ãÀ€ãÀ€cookieless="false"
ãÀ€ãÀ€timeout="60"
/>

Can anyone tell me what's wrong with it??

thx in advance!

Regards,
Gerard

Probably not the session that is wrong.

Are you using "static" variables to store the user details? They are
shared by all users of your web application, so that would explain what
you are seeing.

A web application is a single application that serves multiple users.

By the way, there is also a "framework.aspnet" newsgroup that would be
more appropriate for this question (as in: more people that are
familiar with the problems related to asp.net as session etc.)

Hans Kesting
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top