Monday, February 13, 2012

ASP linkbutton with ASP Image

How to include image inside a linkbutton


this sample align the image to the left of the image


<asp:LinkButton ID="LinkButton1" runat="server" 
  onclick="LinkButton1_Click" CssClass="lnk">
<asp:Image ID="Image1" runat="server"  ImageUrl="~/Graphics/save.png" />
Update Distributors</asp:LinkButton>





while this one align the text to the right of image
<asp:LinkButton ID="LinkButton1" runat="server" 
  onclick="LinkButton1_Click" CssClass="lnk">
Update Distributors<asp:Image ID="Image1" runat="server"  ImageUrl="~/Graphics/save.png" />
</asp:LinkButton>