Este es el codigo que tengo pero al verlas con el expolorador me sale un cuadrado con un aspa,
<%
cDB = "d:\Inetpub\wwwroot\Manufacturas\Operaciones\VIKTO R\JUGADORES.mdb" 'esto es lo variable...
accessdb = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & cDB
set conexion = server.createobject("ADODB.connection")
conexion.open accessdb
Dim Conexion,Tabla
Set Conexion=Server.CreateObject("adodb.connection")
Set Tabla=Server.CreateObject("adodb.recordset")
Dim Temp,Rango
Rango=Request("Name")
Conexion.Open "JUGADORES"
Temp="Select * From JUGADORES Where UCase([DNI])='" & Rango & "'"
Tabla.Open Temp, Conexion
%>
<p>Para Imprimir Etiquetas</p>
<table border="1" width="34%" height="415">
<tr>
<td width="50%" height="23"><font size="2"><% Response.write Tabla.Fields("CLUB") %></font></td>
</tr>
<tr>
<td width="50%" height="380"><font size="2"><img src=<%=("FOTO")%>"> </font></td>
</table></body>
</html>
Las fotos estan incrustadas con formato bmp
Gracias