@model string[]
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@section Header {
@foreach (string str in new[] { "Home", "List", "Edit" })
{
@Html.ActionLink(str, str, null, new { style = "margin: 5px" })
}
}
@section Body {
This is a list of fruit names:
@foreach (string name in Model)
{
@name
}
}
@section Footer{
This is the footer
}