I'm a little confused here, I am trying use a partial view in a for each loop like so
<% foreach (var item in (IEnumerable<MVCLD.Models.Article>)ViewData["LatestWebsites"]){%>
<% Html.RenderPartial("articlelisttemaple", item); %>
<% } %>
And my partial view looks like this
<div class="listingholders">
<h4><%=Html.ActionLink(item.ArticleTitle, "details", "article", new { UrlID = item.UrlID, ArticleName = item.ArticleTitle.ToString().niceurl() }, null)%> </h4>
<p><%= Html.Encode(item.ArticleSnippet) %></p>
<div class="clearer"> </div>
</div>
But when I run the project I get told the partial view doesn't understand what item is??
CS0103: The name 'item' does not exist in the current context
I can't see why it would be doing this as I'm passing item into the partial view?