How do I redirect a browser to a local file in ASP.NET?

后端 未结 2 1189
离开以前
离开以前 2021-01-21 16:34

I want firefox to open C:\\somefile.txt on the local drive. I\'ve tried response.redirect with the \"file:///\" prefix, but it just inserts \"Object moved to here.\" in

2条回答
  •  [愿得一人]
    2021-01-21 17:16

    You can't. Web pages are explicitly not allowed to link or redirect to local content. It's a security measure.

提交回复
热议问题