Hi,
I am trying to retrieve images from sql server 2000 using asp 3.0 and i see a red x icon instead of the image my code is as follows

<%
Option Explicit
Response.Buffer=True
%>
<!-- #Include virtual="/media/doctype.txt" -->
<html>
<head>
<!-- #Include virtual="/metatags.htm" -->
<!-- #Include virtual="/includestyles.htm" -->
<title>Shopping Store </title>
</head>
<body>
<!--#Include virtual="/media/header2.htm" -->
<div class="content">
<%
dim str
str="Yes"
Dim Conn, strDSN,rsobjfea, strSQLfea
Set Conn = Server.CreateObject("ADODB.Connection")
strdsn is my connection string which works fine i just removed it for security purposes
Conn.Open strDSN

Set rsobjfea = Server.CreateObject("ADODB.Recordset")
strSQLfea="select Large_Picture,Sub_Item, Description from Products_Details1 where Featured='" & str & "'"
rsobjfea.Open strSQLfea, Conn, 2,2
%>


<h1>Featured Items !</h1>
<table cellpadding="10px" >
<%
Do while not rsobjfea.eof
%>
<tr>
<th colspan="2"><%=rsobjfea.Fields("Sub_Item")%></th>
</tr>
<tr>

<td valign="top">
<%
'Response.ContentType = "image/jpeg"
%>
<img name="ProductPhoto"
src="<% Response.BinaryWrite rsobjfea("Large_Picture") %>"
width="144" height="144" /></td>
<td valign="top"><%=rsobjfea.Fields("Description")%></td>
</tr>
<%
rsobjfea.MoveNext
Loop
%>
</table>
</div>

<div class="navigation">
<!--#include file="navigation.asp" -->
</div>
</body>
</html>

can someone tell me why this is happening

thanks

belord