Ver Mensaje Individual
  #41 (permalink)  
Antiguo 27/10/2004, 09:00
Avatar de RootK
RootK
Moderador
 
Fecha de Ingreso: febrero-2002
Ubicación: México D.F
Mensajes: 8.004
Antigüedad: 22 años, 2 meses
Puntos: 50
Tema: Tips and Tricks (Web App)
Pregunta:
Que necesito hacer para que pueda hacer un upload de archivos mayores a 4 megas ?
Respuesta:
Coloca dentro del web.config el siguiente tag:

Cita:
<system.web>
<httpRuntime maxRequestLength="tamaño"
...
... />
</system.web>
</configuration>
Donde tamaño proporcionas una cantidad dada en kilobytes

Ejemplo.

<httpRuntime maxRequestLength="4096" />