hello,

I have a very simple xml file

VB Code:
  1. <?xml version="1.0" ?>
  2. - <!-- This Is A List of Menu items
  3.   -->
  4. - <MyItems>
  5.   <ITEM TITLE="one" VALUE="one" />
  6.   <ITEM TITLE="two" VALUE="two" />
  7.   </MyItems>

I would like to read each item within the file and add them to menu items,

I think in .net 2.0 to use the xmlReader Class,

could someone pelase suggest how to use that class in this situation, sorry im used to using the DOM vb6 object for this sort of thing.

Many Thanks.