how to get Session by SessionID?

  • Thread starter Thread starter jiatiejun
  • Start date Start date
J

jiatiejun

I want get a page by WebClient.DownloadData


but the request is sent by Server

can't pass data by Session

I want pass a string by Get
("/mypage.aspx?SessionID=nmrf4d55ycrd1r55ks00goqg")

so mypage.aspx can access Same session object

how to get Session?


thanks




--
¼ÖÌú¾ü
----------------------
Óʼþ:[email protected]
MSN :[email protected]
QQ :170437901
µç»°:15802955851
----------------------
 
may I use Application to pass Session reference?

Mark Rae said:
You can't - the Session object is not available externally...

When a browser makes the first connection to the site, a Session object is
created. This is not available to other users of the site.
 
Back
Top