Question : .asp view image

Can someone help me with this line of .asp code.
I am reading a database file that contains the LOCATION of the image.
I want to display that image in my edit form and this is the line of code I THINK I need to change.

<tr><td class="MyTd">Thumb Picture</td><td><input name="thumb" type="text" value="<%=thumb%>" /></td></tr>

Answer : .asp view image

OK, for the thumb size image, the path the database is returning is:
http://www.toodles.com/productCatalog/t_ikola_thumb.jpg
and for the larger image:
http://www.toodles.com/productCatalog/t_ikola.jpg
The actual location (as I've found from playing around are:
http://www.toodles.com/source/img/t_ikola_thumb.jpg
and
http://www.toodles.com/source/img/t_ikola.jpg
so perhaps this would work:
<td><img src="/source/img/<%=Thumb%>" /> </td>
and
<td><img src="/source/img/<%=Image%>" /> </td>
Random Solutions  
 
programming4us programming4us