我一直在我的視圖中使用<%和%>中的Url.Content,並且所有東西似乎都工作正常...然後從控制器我嘗試了以下,但它總是返回錯誤的路徑ASP.NET MVC:將虛擬路徑轉換爲實際路徑是錯誤的
XDocument xdoc = XDocument.Load(Url.Content("~/content/xml/faq.xml"));
和
XDocument xdoc = XDocument.Load(VirtualPathUtility.ToAbsolute("~/content/xml/faq.xml"));
基本上路徑shoudl爲c:\ VS2008 \來源\ MyAppName .....
但其返回C: \ MyAppName .....
所以其無效,
任何想法,爲什麼這是happning?有沒有解決辦法?
謝謝...是的Server.MapPath工程 – 2009-12-15 15:15:07