Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Browse button problems (doesn't bring up dialog)

Status
Not open for further replies.

rr236

IS-IT--Management
Oct 23, 2000
37
GB
Hi,

I have a problem whereby a form used to upload files works fine on all the computers in my company, but when I went to a customer site this morning, I couldn't get the file upload button to bring up the dialog displaying the files on the local pc.

The button is a standard input type="file", and viewing the source code on the customer machine, proved the code running in the browser is exactly what I would expect it to be.

The versions of IE are exactly what we specified and exactly the same as we use, so has anybody got any ideas as to why the button doesn't work?

Thanking you in advance
RR236
 
show us the code
Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
Bastien,

Here is the code. Thanks for your help.

rr236

<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;>
<html>
<head>
<title>File Upload</title>
<LINK REL=&quot;stylesheet&quot; HREF=&quot;templates/yt1.css&quot; TYPE=&quot;text/css&quot;>
</head>

<FORM NAME=&quot;files&quot; ACTION=&quot;fileload.cfm?x=12&quot; METHOD=POST ENCTYPE=&quot;multipart/form-data&quot;>

<body>
<br>
<br>
<br>
<div align=&quot;center&quot;>
<table>
<tr>
<td>
<input type=&quot;File&quot; size=&quot;50&quot; accept=&quot;text/plain,application/msword,application/msexcel&quot; name=&quot;file_to_load&quot; readonly>
</td>
</tr>
<tr>
<td>
Load To Location
</td>
</tr>
<tr>
<td align=&quot;center&quot;>
<input TYPE=&quot;Submit&quot; value=&quot;Upload File&quot;>
</td>
</tr>
</table></div>
</body>
</FORM>
</html>
 
I have tried this with both NS and IE and have no problems getting the dialog box up and exploring the system...it might be that the IE settings are not allowing the upload...it is the only thing I can think of

sorry

Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top