@Html.ActionLink("超連結顯示文字", "ActionName") <!-- 預設 Controller 為相同葉面 -->

@Html.ActionLink("顯示文字", "ActionName", "ControllerName") <!-- 多指定一個 Conroller -->

@Html.ActionLink("顯示文字", "ActionName", new {id = 1}) 
<!--  <a href="SameController/ActionName/1">顯示文字</a> -->

@Html.ActionLink("顯示文字", "ActionName", new {id = 1}, new{ @class="btn btn-small"})

@Html.ActionLink("顯示文字", "ActionName", "ControllerName", new {id = 1}, new{ @class="btn btn-small"})

@Html.ActionLink("標題-1", "Index", "News", "http", "www.google.com", "tag", null, null)
<!-- <a href="http://www.google.com/News/Index#tag">標題-1</a> -->