在 Asp.net 网页中显示保存文件对话框 [英] Displaying Save File Dialog in Asp.net web page

查看:38
本文介绍了在 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 网页中显示保存文件对话框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆