Hi, I'm pulling my hair out because I cannot get any image to actually display in the image editor. I have verified that the handlers are in the web.config and that the link to the image is valid (in Firebug). Still nothing. I'm not sure if it's connected, but opening up an image from RadFileEditor brings up a blank window as well.
Web.Config
<telerik:RadFileExplorer ID="RadFileExplorer1" runat="server" EnableCreateNewFolder="false" VisibleControls="Toolbar, ContextMenus, FileList" Configuration-DeletePaths="~/Images/Advertising" Configuration-EnableAsyncUpload="true" Configuration-MaxUploadFileSize="9999999" Configuration-UploadPaths="~/Images/Advertising" Configuration-ViewPaths="~/Images/Advertising" ClientIDMode="Static"> </telerik:RadFileExplorer>Web.Config
<system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules runAllManagedModulesForAllRequests="true"> <remove name="UrlRoutingModule" /> <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> </modules> <handlers> <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" /> <add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web,
Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a" /> <add name="Telerik_Web_UI_SpellCheckHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" /> <add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" /> <add name="ChartImage_axd" verb="*" preCondition="integratedMode" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" /> </handlers> </system.webServer>