I am developing an asp.net website.
- When two different users are accessing that website with different sessions, one users content is getting swapped to another user.
- I am using javacsript, calling pagemethods from .aspx pages and C# at code behind.
- This problem mainly occuring when two users are calling same functionality at a time.
- I thought static variables could cause this problem and tried not to use any static variables or static functions except for pagemethod functions where it is manadatory for a pagemethod to be static.
please help me out with this problem.