Tema: fileupload
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/05/2008, 04:31
wilwas
 
Fecha de Ingreso: abril-2005
Ubicación: España - Madrid
Mensajes: 236
Antigüedad: 19 años, 9 meses
Puntos: 2
Respuesta: fileupload

El tamaño de los ficheros que se pueden subir esta limitado, en principio lo tienes en el Machine config, pero lo puedes llevar a tu Web.Config

<!-- httpRuntime Attributes:
executionTimeout="[seconds]" - time in seconds before request is automatically timed out
maxRequestLength="[KBytes]" - KBytes size of maximum request length to accept useFullyQualifiedRedirectUrl="[true|false]" - Fully qualifiy the URL for client redirects
minFreeThreads="[count]" - minimum number of free thread to allow execution of new requests
minLocalRequestFreeThreads="[count]" - minimum number of free thread to allow execution of new local requests
appRequestQueueLimit="[count]" - maximum number of requests queued for the application
enableKernelOutputCache="[true|false]" - enable the http.sys cache on IIS6 and higher - default is true
enableVersionHeader="[true|false]" - outputs X-AspNet-Version header with each request -->


La opción maxRequestLength es la que determina el tamaño de los ficheros que puedes subir.

Espero que te sirva.