示例#1
0
        public ActionResult TopRefresh(MainTab? tab)
        {
            MiniProfiler.Stop(discardResults: true);

            var vd = new TopRefreshModel
                {
                    Tab = tab
                };
            return View(vd);
        }
示例#2
0
        public ActionResult TopRefresh(string tab)
        {
            MiniProfiler.Stop(discardResults: true);
            TopTabs.CurrentTab = tab;

            var vd = new TopRefreshModel
                {
                    Tab = tab
                };
            return View(vd);
        }