ASP session variables overwritten -
we have 2 different asp web applications share same session variable names. when single user opens 2 applications simultaneously same browser there conflict caused session vars overwritten. best approach (if any) fix apart using different session names of course.
this because sharing same application pool both sites in iis. should allocate separate application pool each site avoid clash.
the reason is, each application pool create , allocate new worker process keep assigned web application unique.
hope helps , clarifies.
Comments
Post a Comment