我有一个将文件写入本地磁盘的 ASP.net 页面。
我想向用户显示一个保存文件对话框并允许他设置文件夹的路径。
我知道可以使用下面的代码;
Response.Clear();
Response.ContentType = "text/csv";
Response.AddHeader( "Content-Disposition", "attachment;filename=\"report.csv\"" );
// write your CSV data to Response.OutputStream here
Response.End();
但它修复了文件路径。
我需要捕获用户选择的文件路径。这可能在 ASP.net 中吗?
谢谢。