You can
easily understand how xml data is displayed in an asp page if you look
at an example for that. In our case let us consider that your xml data
is available in the xml file 'xmldata.xml'. Now to load the xml file
to an xml object, the following is used,
_______________________________________________
_______________________________________________
Dim
xmlobj
Set xmlobj = Server.CreateObject("Microsoft.XMLDOM")
xmlobj.async = False
xmlobj.load (Server.MapPath("xmldata.xml"))
And if
you want to read the first child node which has the title of a book,
in the xml file, you can do so by,
Dim booktitle
booktitle = xmlobj.documentElement.childNodes(0).text
Set xml = Nothing
Now you
can display the title of the book within your web page, using
<% =
booktitle %>
With this
as an example you can try to navigate through all the elements of the
xml file and then display them in the web page.
The Fast Track From Code to Cloud Over the past decade, software development has undergone several transformations that have led to the new practices and methodologies such as agile development. Combining emerging technologies -- including dynamic language platforms, cloud computing, and agile development practices -- offers a paradigm shift away from traditional software development methods.
Technology
helps engage students - how do classroom instruction and social dynamics
change when the classroom is completely dependant on modern technology?