html actionlink with parameters

Solutions on MaxInterview for html actionlink with parameters by the best coders in the world

showing results for - "html actionlink with parameters"
Domenico
13 Jan 2020
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)