How on earch can I access the second, third, fourth result sets?
Controller:
var dataContext = new DealDataContext();
XElement xmlString = new XElement("asd");
var deals = dataContext.spSearchDeals(xmlString);
return View(deals);
View:
<% foreach (spSearchDealsResult d in (IEnumerable)ViewData.Model)
{ %>
<li> <%: d.TagLabel %> </li>
<% } %>
This as simple as it gets... but I can only access the very first resulset. HELP!