Processing client file before uploading it
-
I think this is a difficult job. What I have to do in my asp.net (3.5) website: . The client select a file from his filesystem (actually a 512MB bin file from a dedicated SD card) . A client script extract useful data from bin file and compress it (to minimize the amount of uploaded data) . The file is uploaded to asp.net server . The file is processed by the server (to read bin file data and insert it into a database) So my real question : Is it possible to do this with asp.net/C# (or any other language) with a minimal user interaction? Actually I've make it works but with a java applet, and it's not very intuitive and efficient. The user had to select the bin file, save it to a temporary compressed file (done by applet). And finally the user selects a new time the previously saved compressed file and upload it (asp:upload)... So is it possible to do it with ASP.NET ? If yes (or I you have an idea) please just answer me. Thanks for any answer. BR
Le Sourcier