|
|
|
|
î¤éÞ / 2014-04-02 / ¿ÀÈÄ 7:47:08 / 61.78.108.65
Á¶È¸¼ö : 985
|
[±âŸ] À¥»çÀÌÆ® ³»¿ë ±Ü¾î¿À±â |
<%
Session.Codepage=949
Response.Charset="euc-kr"
url = "http://www.chosun.com"
Set xml = server.CreateObject("Microsoft.XMLHTTP") '°³Ã¼»ý¼º
xml.open "get", "" & url & "", false '¿øÇÏ´Â urlºÒ·¯¿À±â
xml.send "" '½ÇÇà
strStatus = xml.Status '½ÇÇà»óÅ ¹Þ¾Æ¿À±â
str = xml.responseText '½ÇÁ¦ ¹Þ°íÀÚÇÏ´Â µ¥ÀÌÅÍ
Set xml = Nothing '°³Ã¼ ¼Ò¸ê
resultStr = split(str, "<br />")
Response.Write resultStr(0)
%>
|
|
|