public ActionResult AutoRefreshFrame(AutoRefreshViewModel model)
 {
     return View("AutoRefreshFrame", model);
 }
        public ActionResult AutoRefreshPage(string path, string queryString, int refreshRateInSeconds, string title)
        {
            var model = new AutoRefreshViewModel
                            {
                                Path = path,
                                QueryString = queryString,
                                RefreshRate = refreshRateInSeconds,
                                Title = title
                            };

            return View("AutoRefreshPage", model);
        }