Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
3k views

C# Response.WriteFile vs Response.TransmitFile filesize issues

I have a 5Mb pdf on the server dowloading this file using a writeFile gives me a 15Mb download, where as the transmitfile gives the correct 5Mb filesize... Is this due to some sort of uncompression ...
2
votes
8answers
3k views

Response.TransmitFile() with UNC share (ASP.NET)

In the comments of this page: http://msdn.microsoft.com/en-us/library/12s31dhy%28v=VS.90%29.aspx ..it says that TransmitFile() cannot be used with UNC shares. As far as I can tell, this is the case; ...
2
votes
1answer
471 views

Running code upon Response.TransmitFile completion

I'm using Response.TransmitFile to retrieve a file from a web service. I'd like to measure the amount of time this process takes from the server's perspective. I've tried grabbing the tick count ...
1
vote
4answers
139 views

ASP.Net Transmit File

I am writing a webapplication in ASP.net. I am trying to make a file dialog box appear for downloading something off the server. I have the appropriate file data stored in a variable called file. ...
1
vote
1answer
249 views

ASP.NET TransmitFile causes site to block

Whenever I use TransmitFile to send a file, the sirte becomes blocked to the user until the file completes. IOW, the user cannot navigate the site. If the user cancels the transfer, it still blocks ...
1
vote
4answers
2k views

WriteFile vs TransmitFile for large files that need to be deleted from the server after transfer

I have to trigger user downloads of large files to a webbrowser, where I create the file to transfer on the server, then delete it immediately afterwards. I've found enough examples to see that I ...
1
vote
3answers
669 views

Why is my call to TransmitFile performing poorly compared to other methods?

First, a bit of background -- I am writing a basic FTP server for a personal project. I'm currently working on retrieving files. My current implementation looks like this: HANDLE hFile = ...
1
vote
1answer
1k views

Response.TransmitFile problem

I have the following code delivering a file to users when they click on a download link. For security purposes I can't just link directly to the file so this was set up to decode the url and transmit ...
1
vote
3answers
1k views

how to determine if file has downloaded

I have the following code that allows a user to download a file. I need to know (if possible) if they downloaded the file successfully. Is there any kind of callback that I can tie into to know ...
1
vote
3answers
2k views

Filename and mime problems - ASP.NET Download file (C#)

I'm facing a very strange problem in my ASP.NET Application. When the user clicks the button that downloads a file, Internet Explorer / Chrome / Firefox shows the save dialog but the name of the ...
0
votes
0answers
22 views

Donwloading a PDF using Response.TransmitFile or Response.Output stream

I have a number of PDF files that originally were stored on the webserver and directly accessible via HTTP. So, I simply linked to them and when the user clicked said link, the PDF was displayed in ...
0
votes
3answers
1k views

Response.TransmitFile Not downloading, and throwing no Errors

I'm currently using a HttpResponse to download files from my Server. I already have a couple functions being used to download Excel/Word files, but I'm having trouble getting my simple Text file ...
0
votes
1answer
143 views

TransmitFile + SChannel

I'm using the TransmitFile API with I/O completion ports for an efficient multithreaded file server on Windows. This all works fine, but I've now also implemented secure sockets using SChannel. ...
0
votes
3answers
79 views

Error in file after download

I have word document which is opening perfectly at server but when i download it using button click event of my website it gets currept. i am using below code on button click to make document ...
0
votes
0answers
382 views

ASP.NET MVC Transmitting Audio Files to Flash Player / HTTP Keep-Alive

I have an ASP.NET MVC application that transmits audio files via a "Music" Controller and "Music" ActionResult. With this, I can serve files through our routing engine (i.e. ...
0
votes
1answer
184 views

getting the mime of text files

I am using a piece of code someone pasted for C# which uses urlmon.dll. It reads in <= 256bytes and returns the mime based on the data. Problem is it cant distinguishes a css file from a ...