Does session variable shared across different browser? If not is there away that I can share information across browser similar to the functionality of caching but the scope is wider.
Does session variable shared across different browser? If not is there away that I
Share
The session is specific to a user’s session ID (generally stored in a cookie named
ASP.NET_SessionID), which won’t be the same across multiple browsers (unless something is wrong).To persist data across multiple browsers, you’re going to have to store data on the server-side in some other format, likely a database. If data needs to be specific to certain individuals, you’ll probably need to set up an authentication scheme to properly restrict the data to the appropriate users.