按照 John Saunders 的建议,我一直在尝试使用 XElement。但是,我的 XML 在 Razor 视图中没有缩进。我一定是在做一些傻事,但我看不到。
控制器代码:
XElement myXElement = XElement.Load(strMapPath + strFileName);
ViewBag.MyOrigDocXML = myXElement;
return View();
视图中的剃刀代码:
@if(ViewBag.MyOrigDocXML != null)
{
@ViewBag.MyOrigDocXML.ToString();
}
非常感谢任何帮助,