0
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數據從控制器傳遞到視圖
如何檢索視圖中的xml對象?
你不只是連載的對象,並返回到視圖。那麼你可以用它做你喜歡的事情嗎? –
似乎與此線程:http://stackoverflow.com/questions/412331/passing-a-xml-parsed-list-from-a-controller-to-a-view-in-asp-net-mvc那是否回答你的問題? – dparsons