Answers for "mvc refresh page from controller"

C#
0

mvc refresh page from 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.
Posted by: Guest on April-04-2022

Code answers related to "mvc refresh page from controller"

C# Answers by Framework

Browse Popular Code Answers by Language