Hi,
I seem unable to upload any large-ish files (around 20mb up) in IE (any version) and Chrome. However, Firefox works fine.
Using the development tools in Internet Explorer, I have noticed that a 404 error occurs. I have run though the following steps:
http://www.telerik.com/help/aspnet-ajax/upload-uploading-large-files.html
Unfortunately, This hasn't help.
We are currently running under IIS 7.5
Markup
Web.Config
I seem unable to upload any large-ish files (around 20mb up) in IE (any version) and Chrome. However, Firefox works fine.
Using the development tools in Internet Explorer, I have noticed that a 404 error occurs. I have run though the following steps:
http://www.telerik.com/help/aspnet-ajax/upload-uploading-large-files.html
Unfortunately, This hasn't help.
We are currently running under IIS 7.5
Markup
<telerik:RadAsyncUpload ID="ruFiles" runat="server" Skin="" ControlObjectsVisibility="None" DisablePlugins="true" OnClientFileUploaded="doFileUpload" OnClientFileSelected="showLoading" OnFileUploaded="rauFiles_FileUploaded" EnableFileInputSkinning="false" MaxFileSize="214748364" OnClientValidationFailed="OnClientValidationFailed" OnClientProgressUpdating="onClientFileUploading"> <Localization Select="" /> </telerik:RadAsyncUpload>Web.Config
<requestFiltering> <!-- the posted content for normal pages should be less than 1 MB. File uploads are handled by the location attribute. --> <requestLimits maxAllowedContentLength="10485760" /> </requestFiltering><httpRuntime maxRequestLength="1073741824" requestValidationMode="2.0" />