Here is my code, simple request, response HTTP;
string uri = "https://forum.donanimhaber.com/forumid_12/tt.htm";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
request.Method = WebRequestMethods.Http.Get;
request.AllowAutoRedirect = false;
request.CookieContainer = new CookieContainer();
request.KeepAlive = true;
request.ContentType = "application/x-www-form-urlencoded";
request.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5";
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream receiveStream = response.GetResponseStream();
StreamReader readStream = new StreamReader(receiveStream, Encoding.UTF8);
string oku = readStream.ReadToEnd();
if you go to this address and watch the network traffic at first get which is "tt.htm",at cookie section there is forum net id session cookie. i want to get this cookie's value in my program and i'm looking at web for this thing but none of them did work. thank you.