Web Advertising | Loans | Personal Loans | Actress | Credit Cards
VB, XML, and ASP [Archive] - PCMech Forums

PDA

View Full Version : VB, XML, and ASP


uglykid
10-03-2000, 09:35 PM
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?

mosquito
10-08-2000, 10:08 AM
use the msxml object. It's the same way you would do it with vb.


Set oXml = createobject("msxml.XMLDocument")
oXml.URL = FilePath
Set xRoot = oXml.root


This way the complete structure of the xml file is exposed.