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.

link|improve this question

79% accept rate
feedback

1 Answer

I think your problem is same as mine.just follow this link ,im sure it will be helpful to you.

link|improve this answer
I do know how it's done through the DataSet. but using a XmlDataSource is this very limited ?? – Deeptechtons Feb 13 at 8:37
You can also use xmldocument class to read xml file to dataset and then go for display data into datagrid from dataset. – user1197129 Feb 13 at 10:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.