I have some pages on my site that allow the user to upload files and other pages that allow the user to download files. On the upload pages, I am using NeatUpload and have the following lines in my web.config:
<httpModules>
<addname="UploadHttpModule"type="Brettle.Web.NeatUpload.UploadHttpModule, Brettle.Web.NeatUpload"/>
</httpModules>
The uploads work great, but it seems too cause a problem with the download pages. When the user downloads a large file (~100MB) it crashes the aspnet_wp process. If I take the above lines out of web.config, the download pages work fine.
To download the file to the user, I am calling "Response.TransmitFile(filename);"
Here is the info from the event log (not very helpful, but you can see the process crashed)
aspnet_wp.exe (PID: 4776) stopped unexpectedly.
Source: ASP.NET 1.1.4322.0
Type: Error
Event ID: 1000
I do not know enough about what these lines do to know why they would cause this problem. Can you help?
Thanks,
John