Answers for "redirecttoaction .net core"

C#
7

asp.net core redirecttoaction with parameters

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

RedirectToAction net core 3.1 with area

return RedirectToAction("action name", "controller name", new { area = "area name" });
Posted by: Guest on July-14-2020

C# Answers by Framework

Browse Popular Code Answers by Language