傳統式
href直接跟鏈接地址URL
<a href="@Model.Base.BdtUrl" target="_blank">首頁</a>><span>發布問題</span>
URL路由式@Url.RouteUrl
使用路由名稱為指定的路由值生成完全限定URL
<a href="@Url.RouteUrl("Detail", new { id = topicModel.LT_ID })" target="_blank">@topicModel.LT_Title</a></li>
MVC路由超鏈接標簽@Html.Routelink
@Html.RouteLink("精選酒店", "ProductListPage", new { cityID = Model.CurrentCityID, productType = ProductType.Hotel }, new { @class = (Model.ProductTypeSelected == ProductType.Hotel ? "current" : "") })
MVC Action超鏈接標簽 @Html.ActionLink
