public ActionResult TopRefresh(MainTab? tab) { MiniProfiler.Stop(discardResults: true); var vd = new TopRefreshModel { Tab = tab }; return View(vd); }
public ActionResult TopRefresh(string tab) { MiniProfiler.Stop(discardResults: true); TopTabs.CurrentTab = tab; var vd = new TopRefreshModel { Tab = tab }; return View(vd); }