Connecting Tech Pros Worldwide Help | Site Map

retrieving XML DTD doc into asp

Girish
Guest
 
Posts: n/a
#1: Jul 19 '05
I have a DTD xml doc and need to read the data from it and display it using
ASP, help please..


Pravin Patil
Guest
 
Posts: n/a
#2: Jul 19 '05

re: retrieving XML DTD doc into asp


Use MSXML for the sam
Exampl
Set objMyXML = Server.CreateObject("MSXML2.DOMDocument"
objMyXML.async = False
objMyXML.loadXML(sXML
response.write objMyXML.XM
Set objMyXML = Nothing
Girish
Guest
 
Posts: n/a
#3: Jul 19 '05

re: retrieving XML DTD doc into asp


Thank Pravin, I am introducing XML into the project, I guess I need to
install xml parsers onto the webserver machine ? Also after loading xml
object like your example, what are the different ways I extract date from
objMyXML and display.. I mean is there a URL I can learn from...

Appreciate it
"Pravin Patil" <pravintp@mastek.com> wrote in message
news:93B0061E-7ED2-4C60-AF4F-3082A0EA6022@microsoft.com...[color=blue]
> Use MSXML for the same
> Example
> Set objMyXML = Server.CreateObject("MSXML2.DOMDocument")
> objMyXML.async = False
> objMyXML.loadXML(sXML)
> response.write objMyXML.XML
> Set objMyXML = Nothing[/color]


Closed Thread