%@ Page Language="VB"
Inherits="System.Web.Mvc.ViewPage(Of List(Of MvcApplication1.Movie))" %>
Index
<% For Each m In Model%>
Title: <%= m.Title %>
Director: <%= m.Director %>
<%=Html.ActionLink("Edit", "Edit", New With {.id = m.Id})%>
<%=Html.ActionLink("Delete", "Delete", New With {.id = m.Id})%>
<% Next%>
<%= Html.ActionLink("Add Movie", "Add") %>