0

I have an asp.net button control used inside ajax AccordionPane and i want to apply the superscipt to the text of button such as "Button1 *Demo ".How can i do this?

swapnil
  • 81
  • 1
  • 3
  • 10

1 Answers1

2

Style it just as you would normal HTML/CSS:

<button ID="btn" runat="server">Button 1 <sup>*Demo</sup></button>
trebuchet
  • 1,483
  • 9
  • 14
  • now if i use this onclick function of this button won't rediect to any other page.In fact its onclick event does not get fired – swapnil Dec 06 '12 at 10:14