DataGrid Image Link

  • Thread starter Thread starter Joey
  • Start date Start date
J

Joey

Guys,

I am using multiple links in my datagrid cel which is a
template column (As shown by martin in my previous post)
but I am also adding an image in the anchor tag.

I can see the image at design time but not when the page
is loaded.

Can someone please tell me what I am doing wrong

Regards,
 
Hi joey
u can do so by editing the html
make the image as a link ... in the html

<asp:TemplateColumn HeaderText="Submitter">
<ItemTemplate>
<img src='\images\>'>
</ItemTemplate>
</asp:TemplateColumn>
Regards
Atul Mittal
 
Back
Top