c# dynamically rename file upon download request

前端 未结 3 1351
独厮守ぢ
独厮守ぢ 2021-01-11 22:35

Is it possible to rename file when trying to download it? For example, I would like to store files to folders using their id\'s but when user downloads file I\'d like to ret

3条回答
  •  逝去的感伤
    2021-01-11 23:18

    just change name of file over here

    Response.AppendHeader("Content-Disposition","attachment; filename=LeftCorner.jpg");
    

    for example

     string filename = "orignal file name.ext";
     Response.AppendHeader("Content-Disposition","attachment; filename="+ filename  +"");
    

    Downloading a File with a Save As Dialog in ASP.NET

提交回复
热议问题