Created
December 3, 2015 22:18
-
-
Save samueleresca/0fe65cc094be5ce15f62 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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