Re: How to Read files belong to client

2000-07-26 Thread Patrick Tsoi-A-Sue
This is a solution with a perl script on the server. I suppose you could replace the server script with java. Include this form on your web page: http://yourserver/cgi-bin/savefile.pl> Here is the server script to receive the file savefile.pl. # - savefile.pl # Receive file name and file

Re: How to Read files belong to client

2000-07-25 Thread Matthias Pfisterer
Hi, The simple solution is to use an http file upload. This needs a CGI script running on the server that receives the data and write it into the file system of the server. On client side, you need no special tricksery, just use the appropriate html constructs. Sorry, no pointers at hand. If you

How to Read files belong to client

2000-07-25 Thread yangyuexiang
Hi, Everybody I want to design an assignment submission system (a simple web page). (1) After the students fill their name and they file names (located at their own computer), they click submit button. (2) How to read the files located at their hard disk? Java Applet or something else? Thanks a