如何将xml数据从控制器传递到视图

时间:2012-05-17 11:43:00

标签: c# asp.net-mvc

public ActionResult Details()
{
    XElement xml = 
         new XElement("persoanldetails", from i in dbContext.Personaldetails
                                                   where i.ID == 1 select i);
    return View(xml);
}

我在控制器中创建了XElement。它将数据库中的数据转换为xml。现在我想使用这个xml对象在dhtmlx中加载网格。

如何在视图中检索xml对象?

1 个答案:

答案 0 :(得分:0)