As far as I know, if you want to redirect to the another MVC controller action, you could try to use RedirectToAction method.
More details, you could refer to below example:
public string SaveProcess()
{
try
{
//// I write savemethod.
return RedirectToAction("Index", "Home");
}
catch
{
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…