Follow thi link...
http://samples.gaiaware.net/BasicControls/GridView/Overview/
http://samples.gaiaware.net/BasicControls/GridView/Overview/
asp:LinkButton
and asp:HyperLinkField
, being used for GridView
navigation, shows simple text hyperlinks. You can easily place an image as a hyperlink. Follow this trick in order to display an image (instead of simple text) in asp:HyperLinkField
or asp:LinkButton
column.asp:HyperLinkField
to display image:<asp:HyperLinkField Text="<img src='Images/img.png' alt='alternate text' border='0'/>"> </asp:HyperLinkField>In the
Text
property, the less than sign (<
) and the greater than sign (>
) should be replaced with their Character Entities.asp:LinkButton
, use the following code:<asp:LinkButton runat="server" Text="<img src='/Images/img_btn.png' alt='Button' border='0'/>"> </asp:LinkButton>
how to implement 3-tier architecture in asp.net using c#. 3-Tier architecture is also called layered architecture. Some people called it ...