Descarga de archivo con ASP
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
Response.ContentType = "application/octet-stream"; Response.AppendHeader("Content-Disposition","attachment; filename=archivoasp.txt"); Response.TransmitFile( Server.MapPath("~/archivoasp.txt") ); Response.End();