Help With Datagrid

  • Thread starter Thread starter vi2psn
  • Start date Start date
How to Add images in datagrid

I would add a template column to the grid in the HTML, and then just place
the picture there. If you need to retrieve pictures from database, or if
pictures need "click"-functionality, please let us know.

<asp:TemplateColumn>
<ItemTemplate>
<img src='myPicture.jpg'>
</ItemTemplate>
</asp:TemplateColumn>

Jeppe Jespersen
 
Back
Top