Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/02/2008, 15:48
roly0476
 
Fecha de Ingreso: septiembre-2007
Mensajes: 58
Antigüedad: 17 años, 4 meses
Puntos: 0
Exclamación Re: Como identificar el tipo de archivo que esta en la base de datos

Aún sigo perdido, intente hacer un if de esta forma pero no funciona se salta todo y sale el mensaje que puse.

If dt.Rows.Count < 1 Then
Response.End()
Else
If Response.ContentType = "image/pjpeg" = True Then
Response.BinaryWrite(CType(dt.Rows(0)(10), Byte()))
Else
Response.Write("No hay Data")
End If
If Response.ContentType = "image/gif" = True Then
Response.BinaryWrite(CType(dt.Rows(0)(10), Byte()))
Else
Response.Write("No hay Data")
End If
If Response.ContentType = "application/vnd.ms-excel" = True Then
Response.BinaryWrite(CType(dt.Rows(0)(10), Byte()))
Else
Response.Write("No hay Data")
End If
If Response.ContentType = "application/msword" = True Then
Response.BinaryWrite(CType(dt.Rows(0)(10), Byte()))
Else
Response.Write("No hay Data")
End If
If Response.ContentType = "application/x-excel" = True Then
Response.BinaryWrite(CType(dt.Rows(0)(10), Byte()))
Else
Response.Write("No hay Data")
End If
End if

puede que este método sea mediocre ustedes me lo dirán.

gracias...