1@Html.ActionLink(
2 "Reply", // linkText
3 "BlogReplyCommentAdd", // actionName
4 "Blog", // controllerName
5 new { // routeValues
6 blogPostId = blogPostId,
7 replyblogPostmodel = Model,
8 captchaValid = Model.AddNewComment.DisplayCaptcha
9 },
10 null // htmlAttributes
11)