0
votes
4answers
654 views
ASP.NET stream content from memory and not from file
The users have requested the option to "download" a csv file representation of GridView contents. Does anyone know how to do this without saving the file to the server but rather just streaming it …
0
votes
ASP.NET stream content from memory and not from file
I created a StringBuilder and dump the contents to the Response object using the following code ("csv" is the StringBuilder variable).
Response.ContentType = @"application/x-msdown …
