hyperlink - Tie Image to Repeater link Button -


i have link button getting populated repeater template here,

  <asp:repeater id="repeater" onitemcommand="repeater_itemcommand" runat="server">    <itemtemplate>  <asp:linkbutton id="btnlinkgroups"  commandname="cmd" runat="server"  text='<%# eval("itemtypedescription")   %>'  commandargument='<%#eval("itemtypeid")  %>'/><br />                                            </itemtemplate>                                                               </asp:repeater> 

currently text (itemtypedesc) link buttons name. how can add png image in same directory instead of text. images aren't stored in db need way link each image correct link button

thanks


Comments

Popular posts from this blog

Issues changing the value of an element in an array in matlab -

vb.net - Alternative to the T-SQL AS keyword -

php - MySQLi binding parameters in a prepared statement doesn't work unless inserted after "WHERE" -