Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はWebMatrixを使用しています。abc.doc ファイルをフォルダーにアップロードしました。ファイルをダウンロードするためのハイパーリンクが作成されます。例: <a href="~/uploads/StudyMaterial/abc.doc">.
<a href="~/uploads/StudyMaterial/abc.doc">
リンクをクリックすると、abc.doc という名前でファイルがダウンロードされます。ファイルをダウンロードするときに、Hello.doc に名前を変更するにはどうすればよいですか?
ファイルの名前を変更するには、応答にヘッダーをfilename追加するときに属性を設定できます。Content-Disposition
filename
Content-Disposition
Response.AppendHeader("Content-Disposition", "attachment; filename=\"Hello.doc\"");