mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-08 00:16:14 +00:00
32 lines
506 B
Plaintext
32 lines
506 B
Plaintext
@model string[]
|
|
@{
|
|
ViewBag.Title = "Index";
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
@section Header {
|
|
<div class="view">
|
|
@foreach (string str in new[] { "Home", "List", "Edit" })
|
|
{
|
|
@Html.ActionLink(str, str, null, new { style = "margin: 5px" })
|
|
}
|
|
</div>
|
|
}
|
|
|
|
@section Body {
|
|
<div class="view">
|
|
This is a list of fruit names:
|
|
|
|
@foreach (string name in Model)
|
|
{
|
|
<span><b>@name</b></span>
|
|
<p />
|
|
}
|
|
</div>
|
|
}
|
|
|
|
@section Footer{
|
|
<div class="View">
|
|
This is the footer
|
|
</div>
|
|
} |