C# – Change Button style in Fileupload control

asp.netcvb.net

I have a Fileupload control on my Page. I want to change browse button's style.

<asp:FileUpload runat="server" ID="fuAttachment" CssClass="mediumResolution required"
                                                size="50" Width="100%" />

how can I do that?

Related Topic