Hello All,
I am migrating a web site project from ASP.NET 2.0 to 4.5. Actually I have migrated to 4.0 already. Implemented script and style bundling with web optimization framework. But while trying to take advantage of 4.5 by setting <httpRuntime targetFramework="4.5"/>
in Web.config, I am getting error for jqueryui and jqueryqtip client side calls. In my page, there is a Script manager which is defined like below
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
I am rendering jqueryui with the below line in master page
<%: Scripts.Render("~/bundles/jqueryui") %>
<%: Scripts.Render("~/bundles/jqueryqtip") %>
During the execution of line $("#dialog").dialog(), I am getting below error.
0x800a01b6 - JavaScript runtime error: Object doesn't suppor ...
Go to the complete details ...