Hello,
I'm novice in MVC but I've learned so far to use HTML.ActionLink for instance in order to call a certain view/controller .
How do I use the WebDataMenu within MVC in order to navigate to certain views/controllers? I'm a bit hanging if I see the property NavigateURL within WebDataMenu control...
Thanks,
Stephan
Hello Stephan,
You should be able to use the control like this :
<ig:WebDataMenu ID="WebDataMenu1" runat="server"> <Items> <ig:DataMenuItem NavigateUrl="/Controller/action" /> </Items> </ig:WebDataMenu>
Please keep in mind that this is WebForms control and it is not MVC control which means if you use its postbacks events you will break the pattern.
Hope this helps.