Tip:如何指定瀏覽器下載并保存動態(tài)生成的數(shù)據(jù)時(shí)對話框里的默認(rèn)文件名示例情景:
你通過代碼在服務(wù)器的內(nèi)存里生成了一個(gè)CSV文件,并且希望用戶下載時(shí)出現(xiàn)的另存為對話框中的默認(rèn)文件名為"Stocks-2007-03-12.csv": 1 string filename="Stocks-2007-03-12.csv";
2 string fileContent="..."; 3 4 Response.ClearHeaders(); 5 Response.ClearContent(); 6 Response.ContentEncoding = Encoding.Default; 7 8 Response.AddHeader("Content-Disposition", "attachment; filename="+filename); 9 Response.Write(fileContent); 10 Response.Flush(); 11 Response.End(); 12 |
|