Example #1
0
        public ActionResult TopRefresh(string tab)
        {
            TopTabs.CurrentTab = tab;

            var vd = new TopRefreshModel
            {
                Tab = tab
            };

            return(View(vd));
        }
Example #2
0
        public ActionResult TopRefresh(MainTab?tab)
        {
            MiniProfiler.Stop(discardResults: true);

            var vd = new TopRefreshModel
            {
                Tab = tab
            };

            return(View(vd));
        }
Example #3
0
        public ActionResult TopRefresh(string tab)
        {
            Current.NavTab = NavTab.GetByName(tab);

            var vd = new TopRefreshModel
            {
                Tab = tab
            };

            return(View(vd));
        }
Example #4
0
        public ActionResult TopRefresh(string tab)
        {
            MiniProfiler.Stop(discardResults: true);
            TopTabs.CurrentTab = tab;

            var vd = new TopRefreshModel
            {
                Tab = tab
            };

            return(View(vd));
        }