I'm still sadly a bit n00bish when it comes to .NET MVC. I have a navigation partial view being called from a MasterPage where I would like to get a list of data. This partial view is in the "Shared" folder, and thus does not have a controller. How do I get data to it so that it may render a list?
Thanks
More specifically, I want to do something like this (pseudocode):
<ul>
<% foreach (item in ListOfItems) {
Response.Write(formattedListItem);
} %>
</ul>