Hi
thanks, but we want people to be dropped into the share at a certain point so they can upload, download, search etc.
Main Topics
Browse All TopicsHi
we have an interface to a fileshare which runs in an asp page. Running windows and IE, it's easy to display the folder for people to add files with drag and drop, but using firefox or Mac we're not getting a good result (for obvious reasons). For compatibility we'd rather steer clear of activex and we'd rather not use Java because that has a requirement for java to be installed on the client.
Does anyone know how we can get the OS to display a window to a NAS fileshare that will work for both Mac and PC?
thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
doubledrat,
A Java applet is going to be your best (and probably only) option. Although you might be hesitant to pursue it because it does required JRE that isn't that uncommon of a requirement. It is also the only cross browser and OS option that I can think of for this. Browsers on their own won't let client scripts like Javascript do this. An exception might be if the page is run locally or an HTA file but then you run into many of the same cross browser limitations (i.e. security can be different for local "web" pages and HTA files are IE only). A Java applet will be your best option. It will work on both Mac and PC and in various browsers.
Let me know if you have any questions or need more information.
b0lsc0tt
Business Accounts
Answer for Membership
by: alien109Posted on 2009-05-19 at 08:41:18ID: 24423274
If you simply need to allow the user to select a file for upload, you can use the form element input with the type of file
<input type="file" name="upload" />
It isn't drag and drop, but would be supported on all platforms. Keep in mind, you'd need to handle the file upload server side however.