I'm not sure if I missed it in the docs, but this should probably put somewhere a little bit more explicitly. Heck, maybe the code that adds it can check for any Forms authentication and raise a warning... or always add it.
When ever using Forms based authentication the Telerik.Web.UI.WebResource.axd is denied access and all scripts fail.
Needs to this appended after the system.web element:
When ever using Forms based authentication the Telerik.Web.UI.WebResource.axd is denied access and all scripts fail.
<authentication mode="Forms"> |
<forms name=".XAPP" path="/" loginUrl="~/Login.aspx" protection="All" /> |
</authentication> |
<authorization> |
<deny users="?"/> |
</authorization> |
Needs to this appended after the system.web element:
</system.web> |
<location path="Telerik.Web.UI.WebResource.axd"> |
<system.web> |
<authorization> |
<allow users="*"/> |
</authorization> |
</system.web> |
</location> |