Dani, <table border="1">
<tr bordercolor="red">
<td><img src="ver_fota.asp?<%=rs("CampoIdentificador")%>" >
<td><%= rs("nome")%></td>
<td><%= rs("matricula")%></td>
</table>
Arquivo ver_fota.asp
<%
Set Con = Server.CreateObject("ADODB.Connection")
Con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=blablablablba;"
Set rs=Con.Execute("SELECT foto FROM tabela WHERE CampoIdentificador="&Request.QueryString)
If Not rs.Eof Then Response.BinaryWrite rs("foto")
%> beleza?