I am trying to export a list to a CSV file. I got it all working up to the point I want to write to file to the response stream. This doesn\'t do anything.
Here is m
I Think you have forgot to use
Response.Flush();
under
Response.Write(sw);
please check