Hi,
I have this xmldoc linked to a xmldatasource in .Net 2.0
<MENUROOT title="Home" visible="true">
<MENU title="subnode_1" visible="true">
<MENUITEM title="leafnode_1" visible="true" />
<MENUITEM title="leafnode_2" visible="false" />
</MENU>
<MENU title="subnode_2" visible="false">
<MENUITEM title="leafnode_3" visible="true" />
<MENUITEM title="leafnode_4" visible="true" />
</MENU>
</MENUROOT>
The xmlDatasource is linked to a treeview control in an asp.net page.
I need to filter the xmldatasource only to show the items tha have the
attribute set to true.
If subnode_2 is set to false then then the leafnode_3 and 4 must not be
shown even if these nodes are set to true.
Anyone have any ideas about this.
Thanks alot!
/espen