What you need to do is in the response for the first request, there will
be cookies that are sent back. You need to include these cookies as part of
your second request. One of these cookies has an identifier in it which
idenfies the session.
Hope this helps.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Hi,
> I am using HttpWebRequest to get the content of a web page. the call to
[quoted text clipped - 6 lines]
>
> thanks
yoni@nobhillsoft.com - 14 Aug 2006 15:42 GMT
This sure helps! what would help more is if you can refer me to any
code sample where its done... do you have anything off the top of your
head... either the online help, an MSDN article or anything like that
where they talk about it? thanks!
> What you need to do is in the response for the first request, there will
> be cookies that are sent back. You need to include these cookies as part of
[quoted text clipped - 17 lines]
> >
> > thanks
Nicholas Paldino [.NET/C# MVP] - 14 Aug 2006 16:38 GMT
Take a look at the CookieContainer property on the HttpWebRequest. You
should be able to assign a new CookieContainer instance to it. Then, the
response should populate a cookie collection in the container. Just make
sure that you store a reference to the CookieContainer so that you can
assign it to the new request.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> This sure helps! what would help more is if you can refer me to any
> code sample where its done... do you have anything off the top of your
[quoted text clipped - 22 lines]
>> >
>> > thanks