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.
我想给用户,链接到我在服务器上的文件,但我不想让他们直接链接
我知道如何做到这一点(使用重写或处理程序),我不希望我需要一个 C# 中的库来做到这一点,非常感谢
例如,您可以简单地Response.WriteFile("filePath")在按钮事件中使用。只需以某种方式使文件名可用于此方法(例如,查询字符串或从数据库读取),但请记住该WriteFile方法不支持恢复,因此如果您的文件不大,此方法很有用。
Response.WriteFile("filePath")
WriteFile