Codigo en el webform:
Código:
En el web.config agregue la siguiente linea de codigo, para habiltiar a la aplicacion a subir archivos de mas de 20MB.if (this.fupFile.HasFile) { try { this.fupFile.SaveAs(Server.MapPath("~/Archivos/") + this.fupFile.FileName); RutaTour = Server.MapPath("~/Archivos/") + this.fupFile.FileName; NombreFlash = this.fupFile.FileName; } catch (Exception exx) { this.lblMensaje.Text = exx.Message; } }
Claro esto esta dentro de <system.web>
Código:
Con todo esto puedo subir archivos de mas de 4MB, probe de subir hasta 5MB y todo bien, pero por ejemplo al subir un archivo de 13MB va todo bien hasta que en cierto momento tira el siguiente error:<httpRuntime maxRequestLength = "20500" />
Código HTML:
Server Error in '/BlaBla' Application. Request timed out. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Web.HttpException: Request timed out. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: [HttpException (0x80004005): Request timed out.] Version Information: Microsoft .NET Framework Version:2.0.50727.3607; ASP.NET Version:2.0.50727.3614
Pienso que podria ser el tiempo asignado al tiempo de ejecucion de un script, pero no se donde setearlo en el web.config.
Agradezco cualquier ayuda.
Saludos.