Dan D wrote:
Quote:
I have a large install file (an exe) on my web Apache server that people
download and install from. Looking at my log files, I see a lot of
people downloading it, but no way to tell for sure if they completed the
download or cancelled out before it completed. Are there any known
methods that would allow the web server to send the file and detect a
completion or cancellation?
This probably won't help you, especially if you can't add to the
installation file, but our situation was more under my control:
We had a package that had to be downloaded and installed. What we did
was include a DLL that we could check for in our login page. If we saw
the OBJECT correctly, then we didn't go to the download page. If we
didn't see the OBJECT then we asked the person to run the install file,
then click a button to try login again. They basically could not get
in until we saw the DLL we had installed.
If you can include an ActiveXObject like this in the installation, you
could check for it later.
Just a thought,
Kev