This is a migrated thread and some comments may be shown as answers.

Configuration of Editor for Find Dialog

1 Answer 70 Views
Editor
This is a migrated thread and some comments may be shown as answers.
CEAN
Top achievements
Rank 1
CEAN asked on 23 May 2016, 04:48 PM

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??

1 Answer, 1 is accepted

Sort by
0
CEAN
Top achievements
Rank 1
answered on 23 May 2016, 05:04 PM

Fixed by doing the following:

Set the RadEditor property DialogHandlerURL to "~/Telerik.Web.UI.DialogHandler.axd"

Change all occurrences of DialogHandler_aspx and DialogHandler.aspx to DialogHandler_axd and DialogHandler.axd

Tags
Editor
Asked by
CEAN
Top achievements
Rank 1
Answers by
CEAN
Top achievements
Rank 1
Share this question
or