Conn and Rec Sets are fine and pulling data.
What I need to do tho is when I query the DB if the field has a certain value let say "YES" I want to then put an image in the cell of my table. Any help would be greatly appreciated.
In this sample code Row 1 will give me the word "MATCH". When I get a match I'm trying to place an image like in Row 2(I'm sure there is something conceptually wrong):
<code>
<TABLE >
<TR><TD><%if (poolRS("Col1"))= "YES" then Response.Write("MATCH")%></TD><TD>Col2</TD></TR>
<TR><TD><%if (poolRS("Col1"))= "YES" then <img src="..\images\Sold1.bmp">%></TD</TR>
</TABLE>
</code>
Thank you in advance.
What I need to do tho is when I query the DB if the field has a certain value let say "YES" I want to then put an image in the cell of my table. Any help would be greatly appreciated.
In this sample code Row 1 will give me the word "MATCH". When I get a match I'm trying to place an image like in Row 2(I'm sure there is something conceptually wrong):
<code>
<TABLE >
<TR><TD><%if (poolRS("Col1"))= "YES" then Response.Write("MATCH")%></TD><TD>Col2</TD></TR>
<TR><TD><%if (poolRS("Col1"))= "YES" then <img src="..\images\Sold1.bmp">%></TD</TR>
</TABLE>
</code>
Thank you in advance.