Passing a XML parsed list from a controller to a view in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T11:29:06Zhttp://stackoverflow.com/feeds/question/412331http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/412331/passing-a-xml-parsed-list-from-a-controller-to-a-view-in-asp-net-mvc2Passing a XML parsed list from a controller to a view in ASP.NET MVCMarcus Cicero2009-01-05T05:17:14Z2009-01-05T05:25:02Z
<p>I realize this is probably a very stupid question so sorry in advanced. I am trying to pass an XML list to a view but I am having trouble once I get to the view.</p>
<p>My controller:</p>
<pre><code> public ActionResult Search(int isbdn)
{
ViewData["ISBN"] = isbdn;
string pathToXml= "http://isbndb.com/api/books.xml?access_key=DWD3TC34&index1=isbn&value1=";
pathToXml += isbdn;
var doc = XDocument.Load(pathToXml);
IEnumerable<XElement> items = from m in doc.Elements()
select m;
</code></pre>
<p>What would my view look like? Do I need to incorporate some type of XML data controller?</p>
<p>Thanks and sorry :) </p>
http://stackoverflow.com/questions/412331/passing-a-xml-parsed-list-from-a-controller-to-a-view-in-asp-net-mvc/412334#4123340Answer by Glenn Slaven for Passing a XML parsed list from a controller to a view in ASP.NET MVCGlenn Slaven2009-01-05T05:23:40Z2009-01-05T05:23:40Z<p>I'm guessing you've missed some code because you're not assigning to items to the ViewData at any point in this code.</p>
<p>What is happening when you try and access the items in the view, can you add the code from your view to show what you're trying to do?</p>
http://stackoverflow.com/questions/412331/passing-a-xml-parsed-list-from-a-controller-to-a-view-in-asp-net-mvc/412335#4123352Answer by Nick Berardi for Passing a XML parsed list from a controller to a view in ASP.NET MVCNick Berardi2009-01-05T05:24:03Z2009-01-05T05:24:03Z<p>I don't know if you intentionally cut off your code half way through the method. But you should be able to do the following to get your elements from your controller action to the view:</p>
<pre><code>ViewData["XmlItems"] = items;
</code></pre>
<p>then in your view you call</p>
<pre><code><% foreach(XElement e in ViewData["XmlItems"] as IEnumerable<XElement>) { %>
<!-- do work here -->
<% } %>
</code></pre>
http://stackoverflow.com/questions/412331/passing-a-xml-parsed-list-from-a-controller-to-a-view-in-asp-net-mvc/412337#4123372Answer by Moran for Passing a XML parsed list from a controller to a view in ASP.NET MVCMoran2009-01-05T05:25:02Z2009-01-05T05:25:02Z<p>first.. you have to return the data to the view modal...</p>
<pre><code>public ActionResult Search(int isbdn)
{
ViewData["ISBN"] = isbdn;
string pathToXml= "http://isbndb.com/api/books.xml?access_key=DWD3TC34&index1=isbn&value1=";
pathToXml += isbdn;
var doc = XDocument.Load(pathToXml);
IEnumerable<XElement> items = from m in doc.Elements()
select m;
return view(m);
}
</code></pre>
<p>in your code behind you have to inherit </p>
<pre><code>ViewPage < IEnumerable<XElement>>
</code></pre>
<p>and than your ViewData.Modal will be a strongly typed <code>IEnumerable<XElement></code>.
and you will be able to work with data as in the controller.</p>