If I have the below code in the books.xml.
I would like to know how to read the xml file and write it into a html file in the table format.
Please help as I am new in c# coding.
I would like to know how to read the xml file and write it into a html file in the table format.
Please help as I am new in c# coding.
Code:
<book> <person> <first>Kiran</first> <last>Pai</last> <age>22</age> </person> <person> <first>Bill</first> <last>Gates</last> <age>46</age> </person> <person> <first>Steve</first> <last>Jobs</last> <age>40</age> </person> </book>
Comment