ActionLink generate empty href using MVC 5 with Umbraco 7
问题 I am using MVC 5 with Umbraco 7. Trying to use ActionLink in my View but the markup it generates have empty href. any idea how to get it working? <a href="">Start Date</a> View: @Html.ActionLink( "Start Date", "SearchV1", "SearchV1", new { sitetypeid = @Request.QueryString["sitetypeid"], leaNo = @Request.QueryString["leaNo"], orderBy = "VacStart" }, null) Controller: public class SearchV1Controller : RenderMvcController { public override ActionResult Index(RenderModel model) { return base