downloaded aspDbFree this aft - awesome!

is it possible to test for a null value in a fld and then display (or not) an image/link within the grid?

i'm doing this now (the hard way) using . .

'previously established recordset rstemp()
'rstemp(0) is first column
'if it is null then i display a "blank" image,
'otherwise i display an icon with a ref to some script
<%do while not rstemp.eof %>
<tr>
<% if isnull(rstemp(0)) then %>
<td><img src=&#34;blank.gif&#34;</td>
<% else %>
<td><a href=&#34;javascript:show(&#39;<%=rstemp(0)%>&#39&#34;><img src=&#34;plan.gif&#34;</td>
<% end if %>
<%next%>

if this is possible using aspDB, which version would be appropriate?