File Upload Control

  • Thread starter Thread starter Jax
  • Start date Start date
J

Jax

I have noticed there is an inherent limit on the size of a
file you can upload using the standard HTML file control.
Does anyone know of the exact limit, anyway in which this
can be bypassed, or a place to get/buy a control that will
have a far higher maximum?

Many thanks for any feedback
jax
 
put this
<httpRuntime
executionTimeout="600"
maxRequestLength="10000" />

on your web.config file. Change the size of maxReq to your needs

i hope this helps.
 
Perfect.
THANKYOU!!!! :)

jax
-----Original Message-----
put this
<httpRuntime
executionTimeout="600"
maxRequestLength="10000" />

on your web.config file. Change the size of maxReq to your needs

i hope this helps.





.
 
Back
Top