Answers for "net core redirecttoaction"

C#
1

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
7

asp.net core redirecttoaction with parameters

RedirectToAction("Action", "Controller" ,new { id });
Posted by: Guest on April-03-2020

C# Answers by Framework

Browse Popular Code Answers by Language