Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created December 3, 2015 22:18
Show Gist options
  • Save samueleresca/0fe65cc094be5ce15f62 to your computer and use it in GitHub Desktop.
Save samueleresca/0fe65cc094be5ce15f62 to your computer and use it in GitHub Desktop.
@model string[]
@{
ViewBag.Title = "Index";
Layout="~/Views/Common/_Layout.cshtml";
}
This is the list of the fruit name:
@section Header{
<div class="view">@foreach (string str in new[] { "Home", "List", "Edit" }) { @Html.ActionLink(str, str, null, new { sytle = "margin: 5px" }); }"</div>
"
}
<div class="view">This is a list of fruit name: @foreach (string name in Model) { <b>@name</b> }</div>
@section Footer{
<div class="view">This is the footer</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment