Displaying Save File Dialog in Asp.net web page(在 Asp.net 网页中显示保存文件对话框)
问题描述
我有一个将文件写入本地磁盘的 ASP.net 页面.
I have a ASP.net page which writes a file to the local disk.
我想向用户显示一个保存文件对话框并允许他设置文件夹的路径.
I want to present the user a Save File dialog box and allow him to set the path to the folder.
我知道可以使用下面的代码;
I know code like below can be used;
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 中可行吗?
I need to capture the filepath that the user selects. Is that possible in ASP.net?
谢谢.
推荐答案
它不像网页那样工作,你必须启动下载 suggestiong 一个目标文件名,然后用户可以覆盖您建议的文件名并选择他喜欢的任何文件夹或文件名,您的内容将保存在该位置.
it does not work like that from a web page, you have to initiate the download suggestiong a target file name then the user can override your suggested file name and select any folder or filename he likes and your content will be saved in that location.
您对仅在 ASP.NET 应用程序服务器端的客户端计算机上有意义的本地路径不做任何事情.
you do nothing with a local path which only makes sense on the client machine on the server side of ASP.NET application.
这篇关于在 Asp.net 网页中显示保存文件对话框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Asp.net 网页中显示保存文件对话框


- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01