mvc3 とコード ファースト スキャフォリングを使用しています。この最初のスニペットは /post/index.cshtml からのものです。
<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 }) |
@Html.ActionLink("Comment", "Comment", new { id=item.Id })
</td>
/Commment/Create.cshtml を開いて、Post フィールドに入力された投稿の ID を表示するには、アクションに何を追加すればよいですか?
public ActionResult Comment(int id)
{
throw new NotImplementedException();
}
これは投稿フィールドです
<div class="editor-label">
@Html.LabelFor(model => model.PostID, "Post")
</div>
<div class="editor-field">
@Html.DropDownList("PostID", String.Empty)
@Html.ValidationMessageFor(model => model.PostID)
</div>