Hi, I am trying to run the image manager dialog with out rad editor and have viewed and am using samples from
http://www.telerik.com/community/forums/aspnet-ajax/editor/client-side-methods.aspx
I am using Q3 2009 and VS 2008 and no matter what I do i get a web.config registration missing error. I also viewed this page for help on this and tried several variations for the web.config as documented here
http://www.telerik.com/support/kb/aspnet-ajax/editor/error-web-config-registration-missing-the-telerik-dialogs-require-a-httphandler-registration-in-the-web-config-file.aspx
the client side code for this is
<telerik:Raddialogopener runat="server" id="DialogOpener1" AdditionalQueryString=""
HandlerUrl="Telerik.Web.UI.DialogHandler.axd" style="display: none;">
</telerik:Raddialogopener>
<button onclick="$find('<%= DialogOpener1.ClientID %>').open('ImageManager');return false;">
Open Image Manager
</button>
and in web.config we have
<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>
and at the bottom in system.webServer we have
<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_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" />
</handlers>
Any thoughts on why this is not working? We have tried quite a few combinations without success. Thanks.
http://www.telerik.com/community/forums/aspnet-ajax/editor/client-side-methods.aspx
I am using Q3 2009 and VS 2008 and no matter what I do i get a web.config registration missing error. I also viewed this page for help on this and tried several variations for the web.config as documented here
http://www.telerik.com/support/kb/aspnet-ajax/editor/error-web-config-registration-missing-the-telerik-dialogs-require-a-httphandler-registration-in-the-web-config-file.aspx
the client side code for this is
<telerik:Raddialogopener runat="server" id="DialogOpener1" AdditionalQueryString=""
HandlerUrl="Telerik.Web.UI.DialogHandler.axd" style="display: none;">
</telerik:Raddialogopener>
<button onclick="$find('<%= DialogOpener1.ClientID %>').open('ImageManager');return false;">
Open Image Manager
</button>
and in web.config we have
<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>
and at the bottom in system.webServer we have
<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_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" />
</handlers>
Any thoughts on why this is not working? We have tried quite a few combinations without success. Thanks.
