I am developing a web application that allows remote users to store binary files on a remote server over the general internet. I have looked at a number of Upload controls but they all suffer from one problem. The original file's Creation and Last Modified timestamps are not preserved or passed to the server.
These timestamps are essential as they provide a precise definition of the version of the file that has been uploaded and this provenance needs to satisfy the legal profession.
I have coded a solution that uses the MS FileSystemObject to get the data and pass it in hidden fields but this is inappropriate for general use as many clients have secure IT policies that forbid the use of ActiveX controls like this.
The problem appears to be that all the controls use the basic <input type=file ... element to pass the file name and this does not preserve the timestamps.
Can anyone suggest a way round this problem?
Bob Boffin
These timestamps are essential as they provide a precise definition of the version of the file that has been uploaded and this provenance needs to satisfy the legal profession.
I have coded a solution that uses the MS FileSystemObject to get the data and pass it in hidden fields but this is inappropriate for general use as many clients have secure IT policies that forbid the use of ActiveX controls like this.
The problem appears to be that all the controls use the basic <input type=file ... element to pass the file name and this does not preserve the timestamps.
Can anyone suggest a way round this problem?
Bob Boffin