在 ASP.NET 网站的 FCKEditor 中显示图像时遇到问题

发布于 2024-07-13 05:48:19 字数 437 浏览 8 评论 0原文

我在使用 ASP.NET 的 FCKEditor html 编辑器时遇到问题,因为当尝试在编辑器中插入图像,然后单击“图像属性”对话框中的“浏览服务器”时,出现“找不到页面”错误。 我想让它显示“images”文件夹中的所有文件。

该网站的设置如下:-

 \ Root
     - \ asp.net standard folders etc...
     - \ Images
     - \ FCKEditor - contains all the javascript etc..
     - Default.aspx - this contains the FCKEditor Control

我尝试将 ImageBrowserURL 设置为各种设置,例如“/images”,但这似乎没有返回图像文件夹的正确路径。

有任何想法吗 ?

I'm having a problem with the FCKEditor html editor for ASP.NET in that when trying to insert an image within the editor and then clicking "browse server" in the Image Properties dialog I get an "page cannot be found" error. I want to get it to show all the files in the "images" folder.

The website is set up as follows:-

 \ Root
     - \ asp.net standard folders etc...
     - \ Images
     - \ FCKEditor - contains all the javascript etc..
     - Default.aspx - this contains the FCKEditor Control

I have tried setting the ImageBrowserURL to various settings such as "/images" but this doesn't seem to return the correct path to the images folder.

Any ideas ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼角的笑意。 2024-07-20 05:48:19

我认为问题在于“ImageBrowserUrl”并不指向图像文件所在的路径,它指向实际文件浏览器所在的路径 - 您不必更改此设置。 确保您已将 fckconfig.js 中的 _FileBrowserLanguage 和 _QuickUploadLanguage 设置为“aspx”。

要设置图像文件的路径,请将以下内容添加到 web.config 中:

  <appSettings>       
    <add key="FCKeditor:UserFilesPath" value="/images/" />
  </appSettings>

url 相对于网站根目录,fckeditor 使用的默认值为 /userfiles/。

希望这可以帮助。

I think the problem is that 'ImageBrowserUrl' doesn't point to the path where your image files reside, it points to the path where the actual file browser is located - you shouldn't have to change this setting. Make sure you have set _FileBrowserLanguage and _QuickUploadLanguage in fckconfig.js to 'aspx'.

To set the path to your image files add the following to your web.config:

  <appSettings>       
    <add key="FCKeditor:UserFilesPath" value="/images/" />
  </appSettings>

The url is relative to the website root, the default used by fckeditor is /userfiles/.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文