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?
The Telerik website has instructions here.
Short version: in Web.config set the maxRequestLength
<system.web>
<httpRuntime maxRequestLength="102400" executionTimeout= "3600" />
</system.web>