Re: How to get session value at where out of asp.net process domain?(session ID is known)
From: ocean (at20000_at_126.com)
Date: 10/18/05
- Next message: [MSFT]: "Re: Cryptography."
- Previous message: Dominick Baier [DevelopMentor]: "Re: Explorer doesn't load asp files"
- In reply to: Sundher: "Re: How to get session value at where out of asp.net process domain?(session ID is known)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Tue, 18 Oct 2005 10:21:51 +0800
The session enums were still in the current session.In fact,I want to get
the othere customer's session value ---- sessionID specified.
"Sundher" <sundher.ganesh@gmail.com> ????
news:1129537029.785035.107410@g44g2000cwa.googlegroups.com...
> You can try this code snippet
>
> System.Collections.IEnumerator iEnumSessions = Session.GetEnumerator();
> while(iEnumSessions.MoveNext())
> {
> HttpSessionState hss = (Session)
> iEnumSessions.Current;
> if(hss.SessionID == "SessionID1")
> {
> //DO code
> }
>
> }
>
- Next message: [MSFT]: "Re: Cryptography."
- Previous message: Dominick Baier [DevelopMentor]: "Re: Explorer doesn't load asp files"
- In reply to: Sundher: "Re: How to get session value at where out of asp.net process domain?(session ID is known)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|