[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webcontrols

Re: Need to change Browse button text

Alessandro Zifiglio

2/5/2004 1:10:00 PM

your welcome chris. I had actually forgotten to clean up and left an un
wanted <asp:input tag in there with runat="server" when i wanted to display
a normal html input element for the sample, but you got it working still,
great ;)

for everybody else viewing this post here is a cleanup :

<input type="file" id="filupload" style="display:none"
onchange="txtfilename.value = this.value;" />
<input type="text" id="txtfilename" style="font-family:tahoma;font-size:9pt"
size="25" disabled="false" />
<input type="button" id="btnbrowse" style="font-family:tahoma;font-size:9pt;
background-color:peachpuff" onclick="filupload.click()"
value="choose a file" />



"Christopher Attard" <anonymous@discussions.microsoft.com> wrote in message
news:322EC8B1-29F7-4E61-A9CC-7C04C7022CA8@microsoft.com...
> Ok it works as explained...thanks very much for your help.
>
> Chris