I have a WebBrowser control in C# and now I need to get internet_cookie_httponly mean that ASP.NET_SessionId over webcontrol. But I'm using IE6 so that I can not use wininet.dll for this. I have tried something same that:
var cookie = webBrowser1.Document.Cookie;
but it can not response ASP.NET_SessionId. Please show me how can I get ASP.NET_SessionId over WebBrowser, thank you!