IE 7 same session id being used in multiple tabs
-
Hi, When my application is opened in multiple tabs in the same browser, same session id is being used. Is theres a way in which we can restrict multiple tabs being opened in the browser from my javascript ? As a work around i tried using cookieless session,it does solve the problem,but since the session id is displayed in the url it is considered as a security threat by our client. Do we have any mechanisms by which we have encrypt or hide the URL with session id in it ? Thanks in advance, R.Sundar.
-
Hi, When my application is opened in multiple tabs in the same browser, same session id is being used. Is theres a way in which we can restrict multiple tabs being opened in the browser from my javascript ? As a work around i tried using cookieless session,it does solve the problem,but since the session id is displayed in the url it is considered as a security threat by our client. Do we have any mechanisms by which we have encrypt or hide the URL with session id in it ? Thanks in advance, R.Sundar.
Hi you cannot hide Query String, but you can encrypt it in your application for security purpose. Please refer to article http://nayyeri.net/blog/how-to-encrypt-query-string-parameters-in-asp.net/[^] You can encrypt the Query String using Cryptography Services of .NET
-
Hi you cannot hide Query String, but you can encrypt it in your application for security purpose. Please refer to article http://nayyeri.net/blog/how-to-encrypt-query-string-parameters-in-asp.net/[^] You can encrypt the Query String using Cryptography Services of .NET
-
Hi, When my application is opened in multiple tabs in the same browser, same session id is being used. Is theres a way in which we can restrict multiple tabs being opened in the browser from my javascript ? As a work around i tried using cookieless session,it does solve the problem,but since the session id is displayed in the url it is considered as a security threat by our client. Do we have any mechanisms by which we have encrypt or hide the URL with session id in it ? Thanks in advance, R.Sundar.
Member 2437558 wrote:
Is theres a way in which we can restrict multiple tabs being opened in the browser from my javascript ?
No. It is browser controlled. BTW, what's wrong in sharing session in multiple tabs?
Navaneeth How to use google | Ask smart questions
-
Member 2437558 wrote:
Is theres a way in which we can restrict multiple tabs being opened in the browser from my javascript ?
No. It is browser controlled. BTW, what's wrong in sharing session in multiple tabs?
Navaneeth How to use google | Ask smart questions
I am stroing most of the fields in the session object. Traversing back and forth in the application i am restoring the fields from the session object. So when the application is opened in multiple tabs fields changed in other tabs are being reflected in all other tabs. I am sure many people would have came across this issue.
-
I am stroing most of the fields in the session object. Traversing back and forth in the application i am restoring the fields from the session object. So when the application is opened in multiple tabs fields changed in other tabs are being reflected in all other tabs. I am sure many people would have came across this issue.
There is no way to control how browser tab works. As I said, it is completly controlled by the browser. All you can do is, open the pages in a popup window and I believe you can't add a tab there.
Navaneeth How to use google | Ask smart questions
-
Hi, When we make the session cookieless,i cant find the sessionid in querystring. In the address bar i can see the sessionid appended in the virtual path itself like this [^] Thanks, R.Sundar.