VDeevi,
What would you like the checkboxes for? You can certainly easily add checkboxes to your menu through templating for example:
<asp:Menu ... >
<StaticItemTemplate>
<asp:CheckBox runat="server" id="CheckBox1" Text='<%# Eval("Text") %>' />
</StaticItemTemplate>
</asp:Menu>
(this is much easier to do in DesignView, click EditTemplates from the chrome menu, drag and drop your checkbox and then use the edit databindings menu)
But a TreeView natively supports CheckBoxes and since both controls are very similar, perhaps it can do the job for you?
--
Danny
disclaimer: Information provided is 'as is' and conveys no warranties or guarantees.