Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having a problem in ASP.NET to style buttons like the Facebook Buttons, found here: http://nicolasgallagher.com/lab/css3-facebook-buttons/

I tried using asp:Button with CssClass set, which works most of the time, except for the buttons that contain images, for example:

class="uibutton icon add"

If i use: Button then things look fine, however I can't connect to the C# code without using JavaScript to do the work.

I'm hoping there is something simple I am missing (I have tried using 'background' and 'background image' in CSS with no luck.

share|improve this question
try on asp:imagebutton – Zia Jan 15 at 12:35

2 Answers

As there's only one element it should work. Could you post a JSFiddle?

Bootstrap suffers the same problem, and the only way (sort of) around it is by using a LinkButton as described here.

share|improve this answer

Looking at the link provided, it seems you can't use the icons with an <input> tag, only with <button> or <a> tags. Fortunately, <asp:LinkButton> will act the same as an <asp:Button> on the server, but render as an <a> tag on the client.

So try using <asp:LinkButton CssClass="uibutton icon add" ... > and it should work fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.