I had to create an image uploading function for some web application in asp.net. I used the built in input asp.net button, with the browse and the filename label. The code for this is simple, it looks something like
<input id="PictureInput" title=PictureInput" type = "file" runate="server" />
The bossman doesn't like the look though, and wants it to just be a small icon that opens up the browse menu. I can't change the built in button (at least I think, tell me if I'm wrong), but I thought maybe I could set it to invisible and have a separate icon button somehow activate the browse button on the input I have now.
This is probably dirt simple, but I've never used asp.net before, so I'm kind of stumbling in the dark here.