日期:2014-05-16 浏览次数:20725 次
<script type="text/javascript">
$(function () {
$("#tabs").tabs({ event: 'mouseover' });
$("#categoryTree").treeview({ collapsed: true });
});</script>
<div id="navbar">
<div class="banner">
<div class="tabbar">
<div class="tabs">
@{var ctrl = ViewContext.Controller;
string action = (string)ViewContext.RouteData.Values["Action"];}
@Html.ActionLink("首页", "Index", "Home", null, (ctrl is HomeController) ? new { @class = "actived" } : null)
@Html.ActionLink("栏目1", "Index", "Video", new { id = "pubdate" }, (ctrl is VideoController && (!new[] { "HotVideos", "Search", "Upload" }.Contains(action))) ? new { @class = "actived" } : null)
@Html.RouteLink("栏目2", "Paging", new { action = "Index", controller = "Album", id = "0" }, (ctrl is AlbumController) ? new { @class = "actived" } : null)
@Html.ActionLink("栏目3", "HotVideos", "Video", new { id = "" }, (ctrl is VideoController && action == "HotVideos") ? new { @class = "actived" } : null)
@Html.ActionLink("栏目4", "Search", "Video", null, (ctrl is VideoController && action == "Search") ? new { @class = "actived" } : null)
@Html.ActionLink("栏目5", "Index", "Admin", null, (ctrl is AccountController || ctrl is AdminController) ? new { @class = "actived" } : null)
</div>
</div>
<div id="dvAccountInfo">
</div>
</div>
<div class="bar">
</div>
</div>