I hope this is a quick question I hope. I need to write some reports and then have the user prompted to save it to his/her local machine. The last time I did this I wrote a file to the webserver and then sent it to the client via Response
object.
to create on the webserver
TextWriter tw = new StreamWriter(filePath);
to send to client
page.Response.WriteFile(path);
The question is, Is there a way to skip the writing of the physical file to to the webserver and go right from an object that represent the document to the response?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…