<div class="forms-box">
<div class="inputs">
@Html.HiddenFor(model => model.AddNewComment.CommentParentID)
@Html.LabelFor(model => model.AddNewComment.CommentText)
<div class="input-box">
@Html.TextAreaFor(
model => model.AddNewComment.CommentText,
new { @class = "comment-text" })
</div>
@Html.ValidationMessageFor(model => model.AddNewComment.CommentText)
</div>
コード内:
2つの値からいずれか1つの値を取得します
Model.AddNewComment.CommentParentID または
Model.AddNewComment.CommentText
私のコントローラーで。
public ActionResult BlogCommentReply(
int blogPostId,
BlogPostModel model,
bool captchaValid)
{
}