Search code examples
asp.netbuttonlinkbutton

Make asp:linkbutton resemble asp:button


Is it possible to change the style of an asp:linkbutton to make it exactly resemble an asp:button?

i.e.

enter image description here


Solution

  • An asp:LinkButton is rendered as a simple HTML A tag, so you could easily style it into whatever you wanted using CSS.

    See this for more info:

    Styling an anchor tag to look like a submit button