views:

267

answers:

1

I know I use the asp FileUpload control for uploading a file but I need to change the design of the control to an image button. Is this possible?

+2  A: 

I take it your referring to the style of the 'Browse...' button. Its styling cannot be modified very easily as its appearance is set by the browser. Here's a workaround involving HTML, CSS and JavaScript:

Article: Styling an input type="file"

Phaedrus