Reputation: 917
hii I want attractive buttons for my website how can i do that
Upvotes: 1
Views: 3181
Reputation: 39277
Use the sliding doors technique and CSS, e.g. http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html
Upvotes: 0
Reputation: 5509
You could always draw them however you wanted in photoshop, save them for web, then use the ImageButton control where you wanted a custom button. Just set the ImageURL property of the ImageButton control to the image you want to display. You could even add some javascript to change the image when the mouse is over it and change back when it leaves.
<asp:ImageButton runat="server" ID="btnSubmit" ImageUrl="images/whatever.gif" onmouseover="this.src='images/whateverOver.gif'" onmouseout="this.src='images/whatever.gif'"/>
Upvotes: 2
Reputation: 26426
I recommend the As Button Generator. Great Web 2.0 buttons. It's an online flash program.
Upvotes: 0
Reputation: 684
Use Liatro button maker http://www.bestshareware.net/liatro-button-maker.htm
Upvotes: 0