프로그래밍언어 201

VB6 -> C# 포팅, 네이버 로그인, 네이버 쪽지 전송, 네이버 메일 전송

네이버 로그인:123456789101112131415161718192021222324252627public static bool NaverLogin(string ID, string PW, CookieContainer cookie){ HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://nid.naver.com/nidlogin.login"); request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded"; request.Referer = "https://nid.naver.com/nidlogin.login..