views:

55

answers:

1

I can not use RadMenu Control in master Page whit MVC pattern(MVC Framwork 3.5)?

How Can I do it?

+1  A: 

Unfortunately any 3rd Party controls that depend on ViewState (which most do) will not work using the .NET MVC Framework as ViewState only exists in the WebForms paradigm.

I would check the JQuery plugins to see if you can find one which meets your requirments. http://plugins.jquery.com/

It should be said that server controls that don't use ViewState will still work however.

willbt