I'm getting a "Telerik is not defined" error on a new project page I just created. The controls show up on the page, but don't do anything.
My web.config has these entries in the controls section:
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
IIS is set not to verify if a file exists for .adx extention.
What should I look for to fix this error? Thanks in advance!
----------------
Update: I had to add:
Any reason why it wouldn't work with the path in the machine.config?
My web.config has these entries in the controls section:
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
IIS is set not to verify if a file exists for .adx extention.
What should I look for to fix this error? Thanks in advance!
----------------
Update: I had to add:
<add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2008.1.415.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
validate="false" />
back to my web.config file. I had moved it to the machine.config, but for some reason it wasn't seeing it, and thus giving me the error above. In testing why, I made sure to remove " <remove path="*.asmx" verb="*" />", so I know that didn't affect it.Any reason why it wouldn't work with the path in the machine.config?