//필요 네임스페이스
using System.Net
using System.IO
public String GetHtmlPage(string strURL)
{
String strResult;
WebResponse objResponse;
WebRequest objRequest = System.Net.HttpWebRequest.Create(strURL);
objResponse = objRequest.GetResponse();
//스트림으로 받아옴
using (StreamReader sr =
new StreamReader(objResponse.GetResponseStream()))
{
strResult = sr.ReadToEnd();
sr.Close();
}
return strResult;
}
2005/07/12
[Asp.Net] 웹 페이지 스크랩핑
가장 많이 본 글
-
처리되지 않은 예외: System.Security.Authentication.AuthenticationException: SSPI를 호출하지 못했습니다. 내부 예외를 참조하십시오. ---> System.ComponentModel.Win32Exce...
-
다음 이유 때문에 원격 도메인 'outlook.com'(으)로 배달하는 동안 '52.96.111.82' 호스트로 메시지를 배달하지 못했습니다. An SMTP protocol error occurred. 오류를 일으킨 S...
-
public DateTime UnixTimeToDateTime ( double value ) { DateTime unixEpoch = new DateTime( 1970 , 1 , 1 , 0 , 0 , 0 , 0 ).ToLocalTime()...
댓글 없음:
댓글 쓰기