Hi
I am using asynupload control where I have given the max file size as 100000 how can increase this to 10 mb?
what are the configuration changes I need to do?
Setting the MaxFileSize on the RadAsyncUpload control, requires you to
modify the maxRequestLength in your web.config file.
The
maxRequestLength is defaulted at around 4MB and it's the reason your 10MB
file doesn't get uploaded.
Try setting maxRequestLength in your web.config as follows
<configuration>
...
<system.web>
<httpRuntimemaxRequestLength="102400"/>
...
</system.web>
</configuration>
Here the configuration, allowing uploads of files up to 100MB...