Hi,
I am developing a web application in .Net 2005 in C#. Here there is a provision that allows the user to download the file from our server which will be mostly .doc files. So I am using Response.TransmitFile
and content-disposition
header method to write the file to the client.
My current requirement is to identify the status of the file being downloaded. If the file download is success/ failure then I have to show a status message in my web page.
I am not aware of any method that can do this kind of action in ASP.Net. So any help would be appreciated. The main problem is that the user can use any external Download Manager tools to do the download process and he can close my application from his browser and continue the download process at a later time.
Edit
Success in the sense that I have to identify whether all the bytes were downloaded or not.
Thanks