0

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

Urbycoz
  • 7,247
  • 20
  • 70
  • 108

1 Answers1

3

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

Community
  • 1
  • 1
Ira Rainey
  • 5,173
  • 2
  • 34
  • 42