One thing in particular was puzzling - when I looked in browser's dev tools at the content of the "WebResources.axd?....", I was getting HTML code instead of JavaScript.
Finally I realized where the problem was - I was using Forms authentication and did not put the WebResource.axd to the exceptions list... doh!
So make sure you have the below in your web.config:
<location path="Telerik.Web.UI.WebResource.axd">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
No comments:
Post a Comment