I got a xml file with the below structured content for the menu which i load using XmlDataSource and i am finding it hard and confusing as to how to specify bindings for the asp.net menu when this xmldatasource is the data source for the menu.
Xml Content
<Menu>
<MenuID>
1.1.1
</MenuID>
<MenuName>
Add New User
</MenuName>
<ParentMenuID>
1.1
</ParentMenuID>
<MenuURL>
default.aspx?Type=A
</MenuURL>
<Type>
SB
</Type>
<MenuImage>
/PMgmtUser/Images/adduser.png
</MenuImage>
</Menu>
<Menu>
<MenuID>
1.1.2
</MenuID>
<MenuName>
View User
</MenuName>
<ParentMenuID>
1.1
</ParentMenuID>
<MenuURL>
/default.aspx?Type=V
</MenuURL>
<Type>
SB
</Type>
<MenuImage>
/Images/users.png
</MenuImage>
</Menu>
Menu Bindings
<asp:Menu runat="server" id="menu" adapterenabled="true" cssclass="nav" enableviewstate="False"
datasourceid="XmlDataSource1">
<DataBindings>
<asp:MenuItemBinding datamember="Menu" imageurlfield="MenuImage" navigateurlfield="MenuURL" />
</DataBindings>
</asp:Menu>
<asp:XmlDataSource id="XmlDataSource1" runat="server" datafile="~/XMLFile.xml"></asp:XmlDataSource>
but i am hit with a error that the specified bindings could not be found. I am sure that menu tag contains the MenuURL and MenuImage field. I am sure you too, what am i doing wrong here.