标签: asp.net-mvc asp.net-mvc-2
我把文件需要在内容文件夹中返回。如果我想返回文件,使用的路径是什么?无论如何,MVC可以在内容文件夹中找到资源吗?
答案 0 :(得分:3)
不知道你在谈论什么内容文件夹,但如果我们认为它是某个子目录:
public ActionResult Index() { return File(Server.MapPath("~/content/foo.txt"), "text/plain"); }
其中~表示您网站的根目录。
~