generating xml and html

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
 
H

HillBilly

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.
 
O

orsula

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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top