I have a webpage layout developed in html. Inside that layout I want to insert xml output. How can do it?
I meant my html layout looks like an rectangle image(border). Inside this rectangle border I want to show my address, phone no, etc. which is done in xml. Thanks.
28-07-2005 at 11:25 PM
|
~Bean~ Level: VB Guru Registered: 07-04-2003 Posts: 488
Re: xml
Reading XML is as easy as working with a database...
be sure you have
Imports System.Xml
then in your code:
dim reader as XmlTextReader
reader = new XmlTextReader ("c:\xml\myfile.xml")
do while (reader.Read())
'do some action here
loop
[Edited by ~Bean~ on 29-07-2005 at 08:03 AM GMT]
____________________________
Eggheads unite! You have nothing to lose but your yolks.