<%
Dim xmlString
xmlString = "<table><tr><td>a1</td><td>b1</td><td>c1</td><td>d1</td><td>e1</td></tr><tr><td>a2</td><td>b2</td><td>c2</td><td>d2</td><td>e2</td></tr><tr><td>a3</td><td>b3</td><td>c3</td><td>d3</td><td>e3</td></tr></table>"
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
Set objTTR = Server.CreateObject("Microsoft.XMLDOM")
Set objTTD = Server.CreateObject("Microsoft.XMLDOM")
objXML.async = False
objXML.LoadXML(xmlString)
If objXML.parseError.errorCode <> 0 Then
Response.Write "error!"
End If
Set objTTR = objXML.getElementsByTagName("tr")
noOfHeadlines = objTTR.length
For i = 0 To (noOfHeadlines - 1)
Set objTTD = objTTR.item(i)
'Response.Write("<a href=""" & objTTD.childNodes(1).childNodes(0).Text & """>" & objTTD.childNodes(0).Text & "</a><br>")
Response.Write objTTD.childNodes(0).Text & " " & objTTD.childNodes(1).Text & " " & objTTD.childNodes(2).Text & " " & objTTD.childNodes(3).Text & " " & objTTD.childNodes(4).Text + "<br>" + vbCrLf
Next
%>
'개발 > classic asp' 카테고리의 다른 글
asp 에서 img 태그에 image 이미지 url 숨기기 - 경로 감추기 (0) | 2014.02.25 |
---|---|
asp 에서 capicom.dll 을 이용하여 암호화 하고 복호화 하기 (0) | 2014.02.25 |
asp 에서 개행문자 줄바꿈 문자 공백문자 - vbCrLf , chr(10), chr(13), chr(32) (0) | 2014.02.25 |
classic asp 에서 Response 4총사 - Write, Flush. Clear, End (0) | 2014.02.17 |
jQuery | asp 에서 jQuery $.ajax 예제 (0) | 2014.02.13 |