I would like to create a text file for export/download, like a *.csv, from an ASP.NET application. I know about Response.TransmitFile, but I want to do this without creating
You could write direcly to the Response.OutputStream and set the right content type, and content disposition header.