Hussain
Hussain

Reputation: 917

creating attractive buttons in asp.net

hii I want attractive buttons for my website how can i do that

Upvotes: 1

Views: 3181

Answers (5)

Ian Mercer
Ian Mercer

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

Mike
Mike

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

Keltex
Keltex

Reputation: 26426

I recommend the As Button Generator. Great Web 2.0 buttons. It's an online flash program.

Upvotes: 0

uvita
uvita

Reputation: 4124

If you are using jquery, maybe you can give a try to this

Upvotes: 1

wonde
wonde

Reputation: 684

Use Liatro button maker http://www.bestshareware.net/liatro-button-maker.htm

Upvotes: 0

Related Questions