httprequest 6

[5]웹파싱? httprequest를 통해 html을 따와서 잘라내봅시다(소스)

프로젝트 압축파일입니다. ArcheAgeFinder.zip 폼의 형태입니다. (Dock = Fill) 아래는 소스코드입니다. Form1.vb Imports System.Net Imports System.IO Imports System.Text Imports System.Text.RegularExpressions Imports System.Threading Public Class Form1 Public id2 As String Public dataHtml As String = "" Private Matches, Matches2, Matches3, MatchesID, Matc..

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..