I have an aspx page that has a user control with an id of MainMenu. This page also has a form decorator, which is decorating the elements in MainMenu user control.
Is it possible to exclude the user control MainMenu from having form decorator classes being applied to it? If yes, then how would I do it?
<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" RenderMode="Auto" EnableAjaxSkinRendering="False"/>
<uc1:MainMenu runat="server" ID="MainMenu"/>