
30/07/2003, 14:10
|
 | | | Fecha de Ingreso: diciembre-2001 Ubicación: Caracas
Mensajes: 221
Antigüedad: 23 años, 4 meses Puntos: 1 | |
a mi en algun momento me ocurrio eso y lo solucione creando un txt a partir de la bd, luego solo escribes estas lineas:
<%
Response.ContentType = "application/unknown"
Response.AddHeader "content-disposition", "attachment; filename=tu_id_de_cancion.txt"
Set Stream = Server.CreateObject("ADODB.Stream")
Stream.Open
Stream.LoadFromFile server.mappath("/"&filename)
Response.BinaryWrite Stream.ReadText
Stream.Close
Set Stream = Nothing
%>
__________________ RTFM antes de preguntar... |