Halaman Refresh MVC dari Controller

public ActionResult ActionMethodName(params)
{
    //whatever you want to do
    return RedirectToAction("ActionMethodName", "ControllerName");
}

//This redirects the user to the other page after your work is done and hence the page refreshes.
Shivesh Pandey