This is a migrated thread and some comments may be shown as answers.

Upload MaxFileSize issue with Chrome

1 Answer 78 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Agm
Top achievements
Rank 1
Agm asked on 29 May 2013, 06:32 PM
Hi,
I am using Telerik RadAsynUpload with MaxFileSize Property.

MaxFileSize="10000000" as 10 MB.
Ex: http://www.telerik.com/help/silverlight/radupload-features-file-size-and-count-limitation.html

when i upload a file of 4MB,it shows the Red Mark in the control in Chrome.
But it is working good in Firefox.

Please help me to resolve this.

Thanks in advance.

Regards,
AGMRAJA

1 Answer, 1 is accepted

Sort by
0
Hristo Valyavicharski
Telerik team
answered on 03 Jun 2013, 12:19 PM
Hi Agm,

You will have to set maxRequestLength in your web.config:
<system.web>
 
    <httpRuntime maxRequestLength="102400" executionTimeout="3600" />
    ...
  </system.web>

or maxAllowedContentLength for IIS7
<system.webserver>
...
<security >
    <requestFiltering>
        <requestLimits maxAllowedContentLength="1024000000" />
    </requestFiltering>
</security>
</system.webserver>

for additional information please read Uploading Large Files help topic.

Regards,
Hristo Valyavicharski
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Upload (Obsolete)
Asked by
Agm
Top achievements
Rank 1
Answers by
Hristo Valyavicharski
Telerik team
Share this question
or