i was not able to upload more than 2Mb size
i searched across forum and i came accross this post
"You'll also need to configure your server to accept the file sizes (configuring the max file size in SWFUpload does not configure your server). You should also configure your server to allow the script to run long enough to accept the upload. You should be able to do this in your web.config."
please help me how to specify that in web.config
January 5, 2008 - 1:03pm
See the svn repository for a sample.
The httpRuntime section defines the timeout and post size limit. The post size is in kilobyte, the timeout in seconds.
January 28, 2008 - 6:33am
Here is a sample:
<httpRuntime
executionTimeout="3600"
maxRequestLength="102400"
/>
-PraVeeN
blog.ninethsense.com/