generating xml and html

  • Thread starter Thread starter orsula
  • Start date Start date
O

orsula

Hi all,

I would like to generate xml from a structure, e.g.:
Dictionary <key, valueArray> myDict;
Into :
<myDict>
<key>key</key>
<valueArray>
<value>1</value>
<value>2</value>
<value>3</value>
</valueArray>
</myDict>

What is the keyword I should google on for that?

Now I want to make an html from that xml into a web page that will
show
myDict: 1, 2, 3

What is the keyword I should google on for this one?

Thanks a lot for your help

O
 
The XmlTextWriter class comes to mind but recently LINQ to XML appears to be
a better solution to learn for generating XML. Secondly, transforming XML to
HTML is done using XSLT or CSS where the key word is XSLT(ransformation)
noting some of the controls that provide native support for reading well
formed XML are fast and easy to use when wanting quick drag and drop
feedback.
 
The XmlTextWriter class comes to mind but recently LINQ to XML appears tobe
a better solution to learn for generating XML. Secondly, transforming XMLto
HTML is done using XSLT or CSS where the key word is XSLT(ransformation)
noting some of the controls that provide native support for reading well
formed XML are fast and easy to use when wanting quick drag and drop
feedback.












- Show quoted text -

Thanks!
 
Back
Top