HomeController.ToIndex C# (CSharp) Method

ToIndex() public method

public ToIndex ( ) : ActionResult
return ActionResult
        public ActionResult ToIndex()
        {
            //put a breakpoint here to go to this action,
            //after url change
            ReloadPageViewModel DLink = new ReloadPageViewModel();
            DLink.Link = "http://somelink";
            return View(DLink);
        }