Hi All,
How can we avoid muliple browser's tab sharing the same session?
Lets say,we have an asp.net application,once i logged in to our application,then do the copy and paste the url to the next tab. Page is not getting redirected to Login page.
i am using forms authentication and denied unauthrozied users.
both of these tabs shares the same session value.
i have tried the below code but no luck.
<configuration>
<system.web>
<sessionState cookieless="true" regenerateExpiredSessionId="true" />
</system.web>
</configuration>
How can we achieve this?
Coul you please help me out guys
Thanks,
Sundar.
Go to the complete details ...