HTML Editor for ASP.NET AJAX
AspxDirectory Property
Server ReferenceWinthusiasm.HtmlEditorHtmlEditorAspxDirectory
The site folder where the Image Browser ImageUpload.aspx file is located.
Declaration Syntax
C#
public string AspxDirectory { get; set; }
Remarks
The Image Browser upload functionality requires the ImageUpload.aspx file on the site. This property tells the Image Browser where that file is located.

If CanUpload is true this property must be set.

Note: To prevent files that are larger than acceptable from being uploaded, a separate Web.config file should also be located in this folder. That configuration file should set the maxRequestLength to an appropriate amount, generally slightly larger that the MaxUploadFileSizeInKB setting.

Examples
Set the property declaratively in the HtmlEditor tag:
CopyC#
AspxDirectory = "~/ImageBrowser/Aspx"
Set the maxRequestLength in the related Web.config:
CopyC#
<?xml version="1.0"?>
<configuration>
    <system.web>
        <httpRuntime maxRequestLength="260"/>
    </system.web>
</configuration>

Assembly: Winthusiasm.HtmlEditor (Module: Winthusiasm.HtmlEditor) Version: 2.3.0.0 (2.3.0.0)