This question is locked. New answers and comments are not allowed.
i'm using a scriptManager and style sheet regitrat like this in my master page:
<telerik:RadScriptManager ID="RadScriptManagerMain" runat="server">
</telerik:RadScriptManager>
<% Html.Telerik().StyleSheetRegistrar()
.DefaultGroup(group => group.Add("telerik.common.css")
.Add("telerik.vista.css")).Render();
And I get the following exceptions:
{"Exception of type 'System.Web.HttpUnhandledException' was thrown."}
{"Please, see whether wrapping the code block, generating the exception, within RadCodeBlock resolves the error."}
As soon as I remove style sheet registrar it works fine and I can use the web form control in MVC. Is this a conflict between ScriptManager and MVC style registrar.