// Create a link to SingleActionController
@Html.ActionLink("Link text", typeof(Type.Of.The.SingleActionController))
 
// Create a link to SingleActionController with a request and attributes
@Html.ActionLink("Another link text", typeof(Type.Of.The.SingleActionController),
                                             routeValues: new ShowListRequest
                                                 {
                                                     Property1 = Model.Property1,
                                                     AnotherProperty = Model.AnotherProperty
                                                 },
                                             htmlAttributes: new { id = "thelink", @class = "btn" })
                                             
// Generate a URL
<form action="@Url.Action(typeof(Type.Of.The.SingleActionController))"

// Render an action
@Html.Action(typeof(Type.Of.The.SingleActionController))