4

我在 App_Data 文件夹中有一个 xml,我需要在页面中访问它。我怎样才能做到这一点?

4

2 回答 2

9

使用Server.MapPath获取文件的路径

Server.MapPath("~/App_Data/yourxmlfile.xml")
于 2013-04-26T13:27:22.097 回答
1

正如@Ruben-J 指出的那样,您可以使用 Server.MapPath,或者您可以将Path.Combine与HttpRequest 的PhysicalApplicationPath属性一起使用。

string appdata = Path.Combine(HttpContext.Current.Request.PhysicalApplicationPath, @"App_Data\yourxmlfile.xml");
于 2013-04-26T15:45:19.433 回答