MVC重定向返回文件

版权声明:本文为博主原创文章,需要转载尽管转载。 https://blog.csdn.net/z5976749/article/details/81511503
  public ActionResult Index()
        {
            Response.Redirect("~/Home/f");
            return View();
        }

        public FileResult f()
        {
            return File(@"D:\盐城0803.txt", "application/octet-stream");
        }

MVC默认打开的Index页面  重定向到f() 方法   地址放在桌面可能打不开,  application/octet-stream 代表所有文件

猜你喜欢

转载自blog.csdn.net/z5976749/article/details/81511503
今日推荐