如何更改 Telerik RAD 控件 RADEditor/WYSIWYG 控件中文档管理器的最大上传文件大小?

发布于 2024-07-06 06:39:35 字数 278 浏览 15 评论 0原文

我使用 Telerik RAD Controls RADEditor/WYSIWYG 控件作为动态数据解决方案的一部分。

我希望能够使用此控件的文档管理器上传文件。

但是,这些文件比最大上传文件大小的默认设置要大。

谁能指出我正确的方向来解决这个问题?


Thanks Yaakov Ellis, see your answer + the answer I linked through a comment for the solution.

I'm using the Telerik RAD Controls RADEditor/WYSIWYG control as part of a Dynamic Data solution.

I would like to be able to upload files using the Document Manager of this control.

However, these files are larger than whatever the default setting is for maximum upload file size.

Can anyone point me in the right direction to fix this?


Thanks Yaakov Ellis, see your answer + the answer I linked through a comment for the solution.

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

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

发布评论

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

评论(2

素衣风尘叹 2024-07-13 06:39:35

此帖子Yaakov Ellis 的回答 可能会帮助别人。

但是,我发现了我的问题,将以下代码组合在用户控件 FieldTemplate (动态数据)的代码隐藏中 Yaakov Ellis 的回答解决了问题。

RadEditor1.DocumentManager.MaxUploadFileSize = 4194304;

This thread in combination with Yaakov Ellis's answer may help others.

However, I've found for my problem, putting the following code in the code-behind for the user control FieldTemplate (Dynamic Data) in combination th Yaakov Ellis's answer solved things.

RadEditor1.DocumentManager.MaxUploadFileSize = 4194304;
游魂 2024-07-13 06:39:35

Telerik 网站此处提供了说明。

简短版本:在 Web.config 中设置 maxRequestLength

<system.web>
  <httpRuntime maxRequestLength="102400" executionTimeout= "3600" />
</system.web>

The Telerik website has instructions here.

Short version: in Web.config set the maxRequestLength

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