![]() |
|
|
|||||||
![]() |
ASP Net - share session state between two application |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Hello,
How to share session state between two or more ASP.NET applications in the same server or different ones? Thanks a lot. Charlie CharlieHoo |
|
|
|
|
#2 |
|
Posts: n/a
|
"CharlieHoo" <> wrote in message news:... > Hello, > > How to share session state between two or more ASP.NET applications in the > same server or different ones? > > Thanks a lot. > > Charlie > Use a database to hold the session information Mythran |
|
|
|
#3 |
|
Posts: n/a
|
read more:
http://www.eggheadcafe.com/articles/scaleout_server.asp -- 2004 and 2005 Microsoft MVP C# Robbe Morris http://www.masterado.net Earn $$$ money answering .NET Framework messageboard posts at EggHeadCafe.com. http://www.eggheadcafe.com/forums/merit.asp "CharlieHoo" <> wrote in message news:... > Hello, > > How to share session state between two or more ASP.NET applications in the > same server or different ones? > > Thanks a lot. > > Charlie > |
|
|
|
#4 |
|
Posts: n/a
|
Hi CharlieHoo,
As for sharing session between different asp.net web application, current the ASP.NET didn't provide buildin for this since each application will has their own isolated session storage so as to prevent them from being tampered by other apps. If we do need to sharing them among multi-apps, I think using a custom database to store them as Mythran has mentioned will be the possible approach. Also, the following article which discussing on sharing session between asp.net and classic ASP app just mentioned this means: #How to Share Session State Between Classic ASP and ASP.NET http://msdn.microsoft.com/library/en...spnet.asp?fram e=true Thanks, Steven Cheng Microsoft Online Support Get Secure! www.microsoft.com/security (This posting is provided "AS IS", with no warranties, and confers no rights.) |
|