generating xml and html

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • orsula

    generating xml and html

    Hi all,

    I would like to generate xml from a structure, e.g.:
    Dictionary <key, valueArraymyDic t;
    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
  • HillBilly

    #2
    Re: generating xml and html

    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(ransformat ion)
    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.


    "orsula" <orsula.z@gmail .comwrote in message
    news:059ad11b-1e4c-4be2-bcda-fffad47d083b@34 g2000hsh.google groups.com...
    Hi all,
    >
    I would like to generate xml from a structure, e.g.:
    Dictionary <key, valueArraymyDic t;
    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

    Comment

    • orsula

      #3
      Re: generating xml and html

      On Aug 17, 5:47 pm, "HillBilly" <someb...@somew here.comwrote:
      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(ransformat ion)
      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.
      >
      "orsula" <orsul...@gmail .comwrote in message
      >
      news:059ad11b-1e4c-4be2-bcda-fffad47d083b@34 g2000hsh.google groups.com...
      >
      >
      >
      Hi all,
      >
      I would like to generate xml from a structure, e.g.:
      Dictionary <key, valueArraymyDic t;
      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- Hide quoted text -
      >
      - Show quoted text -
      Thanks!

      Comment

      Working...