ASP.NET MVC - Appending data onto a file download

Posted by aschepis on Stack Overflow See other posts from Stack Overflow or by aschepis
Published on 2010-05-11T11:05:14Z Indexed on 2010/05/11 12:14 UTC
Read the original article Hit count: 186

Filed under:
|
|

what is the best way to append data onto a file download? I figure that i can make my own class that implements InputStream and just consolidates two input streams (the file first, my additional data to append second.) but is there an existing view class that i can use to just return an InputStream or will i have to roll my own view class as well?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about asp.net-mvc