Html.ActionLink 不支持动态调度, 怎么才能让他支持呢?
@Html.ActionLink(ViewBag.title, "Details", "News")
@Html.ActionLink((string)ViewBag.title, "Details", "News")
@Html.ActionLink(ViewBag.title as string, "Details", "News")