|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (4 bit)
Join Date: Jan 2000
Location: Chicago IL 60657
Posts: 9
|
I'm trying to read a table using visual basic and display the output as XML and then read the XML using ASP. So far I've been able to display the output to XML using VB, but how do I read it XML from ASP? Any ideas anyone?
|
|
|
|
|
|
#2 |
|
SQL nutcase
|
use the msxml object. It's the same way you would do it with vb.
Code:
Set oXml = createobject("msxml.XMLDocument")
oXml.URL = FilePath
Set xRoot = oXml.root
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|