Ask a Question related to ASP.NET General, Design and Development.
-
Jerry J #1
is Response.WriteFile ok with large files?
I am using Response.WriteFile to send file streams back to
web clients.
My question is this:
Can I use Response.WriteFile(SomeFilePath) for any size
file? Will it handle chunking the data back to the client
or do I have to do it myself?
Jerry J Guest
-
Large CFC Files
Hi, I was just wondering if I put all the quries as functions in to a single CFC file will that have a substatial performance impact? -
difference between hyperlink and response.writefile
Hi all... Newbie question? clicking on a link to download a file and Response.WriteFile? I have security on a file called text.txt that only... -
Illustrator CS files with large linked files results in large file size
If I place a large linked Photoshop 7 file (.psd or.eps), say 36 MB, in Illustrator CS and save without embedding the file it takes ages to save and... -
large PDF files
Why is it that when I create a PDF file from a Freehand MX file, 7.3mb, the PDF file ends up being 16.8mb? I am not doing any compression but I am... -
Returning files in my Response : ContentType wanted
Hi, I return a file to the client browser by using Response.WriteFile Now, there can be multiple type of files, and I need to specify the... -
Alvin Bruney #2
Re: is Response.WriteFile ok with large files?
writefile will stream out *any size file, but you will obviously run against
the output stream buffer set at 4k limit (may be wrong on the size limit).
In addition, you will be grinding your application to a halt trying to
stream this much info.
"Jerry J" <JanofskyJ@RemoveItIntegrisolve.com> wrote in message
news:008b01c34e23$11b17410$a401280a@phx.gbl...>
> I am using Response.WriteFile to send file streams back to
> web clients.
>
> My question is this:
>
> Can I use Response.WriteFile(SomeFilePath) for any size
> file? Will it handle chunking the data back to the client
> or do I have to do it myself?
Alvin Bruney Guest
-
Jerry J #3
Re: is Response.WriteFile ok with large files?
Can you tell me where there is information about the size
of the stream buffer you think might be 4k? I can't find
very much information on how Response.WriteFile works.
obviously run against>-----Original Message-----
>writefile will stream out *any size file, but you willthe size limit).>the output stream buffer set at 4k limit (may be wrong onhalt trying to>In addition, you will be grinding your application to amessage>stream this much info.
>
>"Jerry J" <JanofskyJ@RemoveItIntegrisolve.com> wrote into>news:008b01c34e23$11b17410$a401280a@phx.gbl...>>
>> I am using Response.WriteFile to send file streams backclient>> web clients.
>>
>> My question is this:
>>
>> Can I use Response.WriteFile(SomeFilePath) for any size
>> file? Will it handle chunking the data back to the>>> or do I have to do it myself?
>
>.
>Jerry J Guest



Reply With Quote

