Created
April 3, 2018 05:51
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 IEnumerable<WebApplication1.Models.Movie> | |
@{ | |
ViewBag.Title = "Index"; | |
} | |
<h2>Index</h2> | |
<p> | |
@Html.ActionLink("Create New", "Create") | |
@using (Html.BeginForm("Index", "Movies", FormMethod.Get)) | |
{ | |
<p> | |
類型:@Html.DropDownList("movieGenre", "全部") | |
標題:@Html.TextBox("searchString")<br /> | |
<input type="submit" value="搜尋" /> | |
</p> | |
} | |
</p> | |
<table class="table"> | |
<tr> | |
<th> | |
@Html.DisplayNameFor(model => model.Title) | |
</th> | |
<th> | |
@Html.DisplayNameFor(model => model.ReleaseDate) | |
</th> | |
<th> | |
@Html.DisplayNameFor(model => model.Genre) | |
</th> | |
<th> | |
@Html.DisplayNameFor(model => model.Price) | |
</th> | |
<th> | |
@Html.DisplayNameFor(model => model.Rating) | |
</th> | |
<th></th> | |
</tr> | |
@foreach (var item in Model) { | |
<tr> | |
<td> | |
@Html.DisplayFor(modelItem => item.Title) | |
</td> | |
<td> | |
@Html.DisplayFor(modelItem => item.ReleaseDate) | |
</td> | |
<td> | |
@Html.DisplayFor(modelItem => item.Genre) | |
</td> | |
<td> | |
@Html.DisplayFor(modelItem => item.Price) | |
</td> | |
<td> | |
@Html.DisplayFor(modelItem => item.Rating) | |
</td> | |
<td> | |
@Html.ActionLink("Edit", "Edit", new { id=item.ID }) | | |
@Html.ActionLink("Details", "Details", new { id=item.ID }) | | |
@Html.ActionLink("Delete", "Delete", new { id=item.ID }) | |
</td> | |
</tr> | |
} | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment