Yes, You can pass using RedirectToAction.
i.e. return RedirectToAction(“ActionName”, “ControllerName”, new { routeValue1 = value1, routeValue2 = value2 });
Yes, you can pass route values with the RedirectToAction method in ASP.NET MVC.This method is commonly used to redirect to a different action method while also providing route values. Here’s a simple example: public ActionResult SomeAction() { return RedirectToAction("TargetAction", "Home", new { id = 5, name ="example" }); }