0

我正在使用 IIS Url Rewrite 创建友好的 url,我注意到在启用它后 radeditor 无法像图像中那样呈现:http://i.stack.imgur.com/TZo2O.png

在 web.config 中使用的规则如下所示:

 <rewrite>
        <rules>
            <rule name="RewriteUserFriendlyURL1" stopProcessing="true">
                <match url="^([^/]+)/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="Default.aspx?name={R:1}" />
            </rule>
        </rules>
    </rewrite>

我已将 DialogHandler 从 aspx 更改为 axd 并将其路径更改为如下所示并且也无法正确渲染

<add path="~/Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
4

1 回答 1

0

我检查了提供的屏幕截图并注意到问题在于 RadEditor 没有为其工具栏加载其 CSS 类。

尝试通过启用CDN 样式表或手动注册皮肤,如本文所示:注册 RadEditor 的外部皮肤

于 2013-01-22T14:28:21.820 回答