One of my ASP.NET portal applications was reported about the problem
with Session key mixed up by using IE 7 and multiple tab feature.

The user opens the application with IE 7 and open the application
parallelly with multiple tabs. Then the user submits the form in the
first tab and then the second tab immediately after the first tab. The
problem is ASP.NET server issues the same session key for both of the
tabs in the same IE browser. So, ASP.NET Server side knows both of the
requests are coming from the same session key and then the session
objects created by the first request process is overwritten by the
successive second request process. Then the application got problem
for data inconsistency.

The server side process requires to use session object due to some
constraints. So, I'm trying to find out the solution how to detect
this the session key conflict problem in multiple tabs/browser either
in the client side or server side.

If anyone has encountered this kind of similar problem or has solution
in hand, could you please share me? I appreciate for your advices and
solutions.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web 
Services,.NET Remoting" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://cm.megasolutions.net/forums/default.aspx
-~----------~----~----~----~------~----~------~--~---

Reply via email to