@foreach (var commentlist in Model.Comments.Where(x => x.CommentParentID == 0)) {
<div class="blog-comment">
<div class="comment-info">
<div class="user-info">
@if (commentlist.AllowViewingProfiles)
{
<a href="@Url.RouteUrl("CustomerProfile", new { id = commentlist.CustomerId })" class="username">@(commentlist.CustomerName)</a>
}
else
{
<span class="username">@(commentlist.CustomerName)</span>
}
<div class="avatar">
@if (!String.IsNullOrEmpty(commentlist.CustomerAvatarUrl))
{
<img src="@(commentlist.CustomerAvatarUrl)" class="avatar-img" title="avatar" alt="avatar" />
}
</div>
</div>
</div>
<div class="comment-content">
<div class="comment-time">
@T("Blog.Comments.CreatedOn"): <span class="stat-value">@commentlist.CreatedOn.ToString("g")</span>
<div class="buttons">
<input type="submit" id="reply" class="button-1 blog-post-add-comment-button" onclick="return showHide();" />
@Html.Hidden("CommentParentID",@commentlist.Id)
</div>
</div>
<div class="comment-body">
@Html.Raw(Nop.Core.Html.HtmlHelper.FormatText(commentlist.CommentText, false, true, false, false, false, false))
</div>
</div>
<div class="clear">
</div>
}
I am using @Html.Hidden("CommentParentID",@commentlist.Id) to set value CommentParentID for ChildComment if any.
In below action i want to pass CommentParentID as parameter.
@Html.ActionLink("Reply", "BlogCommentReply", "Blog", new { blogPostId = blogPostId, CommentParentID=CommentParentID,captchaValid = Model.AddNewComment.DisplayCaptcha }, null)
How i can retrieve this hidden field value in Controller? Or How i can pass that value?