@model ZoomLa.SQLDAL.SQL.PageSetting @{ Layout = "~/Views/Shared/_empty.cshtml"; string action = ViewBag.action; string tagkey = Context.Request.GetParam("tagkey"); string title = action.Equals("content") ? "文章列表" : "商品列表"; } @section head{ @title } @section content{
@if (action.Equals("content")) { @Html.Partial("Contents_List", Model) } else { @Html.Partial("Commoditys_List", Model); }
} @section script{ }