I'm trying to use the Find dialog functionality but keep getting an error:
I created a new ASP.NET project. The RadEditorDialogs directory and files exist on the root of the project.
"Web.config registartation missing! The Telerik dialogs require a HttpHandler registration in the web.config file."
I did you we Smart Tag to add the handler but still not working.
The following is in the web.config:
System.web section
<httpHandlers>
<add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
<add path="Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
</httpHandlers>
System.webServer section
<handlers> <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
<add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" />
</handlers>
Any ideas??