I am trying to redirect to a different view (ApartmentController) , so I have tried all the methods mentioned here :RedirectToAnOtherView But none worked with me , Any help would be thankfull My Controller is ApartmentController my View Is Index so My url would be like "Apartment/Index" I have tried :
return RedirectToAction("/Apartment/Index",new Apartment());
return View("Apartment");
return RedirectToActionPermanent("Apartment");
none worked with me