How to customize the attach file button in aspx

0

I'm having trouble changing the text of the file attachment button. My button is with the text like this:

Iwantedtochangethetextof"Browse ..." Would? I'm doing it in asp.net.

Follow the upload code:

<asp:Label ID="Label2" runat="server">Arquivo:</asp:Label>
<asp:FileUpload ID="fuArquivo" runat="server" Width="400px"/>
    
asked by anonymous 14.04.2016 / 15:41

1 answer

0

This is not technically possible, for safety reasons. If not, the user could be "cheated".

However, there are other methods to resolve this, although these require working with pure HTML instead of the .NET server control - see here to get an idea.

Source

    
14.04.2016 / 15:49