K Kenneth Wong Feb 1, 2007 #1 Anyone did it before. Please advise. Yahoo mail, Gmail, Regular Hotmail work...
G Guest Feb 1, 2007 #2 What provision do you have for handling cookies, which are an integral part of these? Peter
K Kenneth Wong Feb 1, 2007 #3 CookieContainer _cookies = new CookieContainer(); HttpWebRequest webRequest = WebRequest.Create("https:// my.screenname.aol.com/_cqr/login/login.psp?mcState=initialized") as HttpWebRequest; webRequest.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705)"; webRequest.CookieContainer = _cookies; The code that I am using works on Gmail, Yahoo Mail and Hotmail... so I dun think cookies is the problem....
CookieContainer _cookies = new CookieContainer(); HttpWebRequest webRequest = WebRequest.Create("https:// my.screenname.aol.com/_cqr/login/login.psp?mcState=initialized") as HttpWebRequest; webRequest.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705)"; webRequest.CookieContainer = _cookies; The code that I am using works on Gmail, Yahoo Mail and Hotmail... so I dun think cookies is the problem....