Answers for "redirect to another controller page in asp.net core"

C#
0

redirect to another controller page in asp.net core

public RedirectToActionResult Index()
{
    return RedirectToAction(actionName: "Index", controllerName: "Author");
}
Posted by: Guest on January-19-2022

Code answers related to "redirect to another controller page in asp.net core"

C# Answers by Framework

Browse Popular Code Answers by Language