is Response.WriteFile ok with large files?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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?
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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.
    >-----Original Message-----
    >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?
    >
    >
    >.
    >
    Jerry J Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139