about xml conversion in c#.net
hello frnds.... can anyone suggest me tht wht can be my approach to convert an html document into xml ...thanx in advance :)
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
naura paxPosted Jul 3, 2009, 4:46 AM
It depends on what is displayed on html page. If there is tabular information, or you have to show records then xml can be of great use.
For eg if you are showing students records you can create tags representing attributes(columns) of student record say name,subject,marks.
later on these tags can be used to place your actual data. Plus you'll have to write xsl (formatting and transforming language for xml) to actully render on the page.
Hope i'm making some sense here.