Hi,
I can't get this to work, I want to show a simple list of artist names but always get empty links back.
foreach (Artist artist in Model)
{%>
<a href="gotosomewhere"><% Html.Encode(artist.Name); %></a>
<%}
I have debugged it, and I'm certain that Model contains a list of artists.
Thanks, Peter