Asp.Net core 6 project, with Areas.PartialView, this partial view is created for Search it contains an Input element which will contain the value that the user wrote in, and after submit this form will send that value to an Action called Search in the controller.view and during the submit the partial view should send that value to the Action called Search in the current Controller.Action will be fixed because it is known, but the Controller is unknown because it is dynamically changing.Search action looks like in almost all controllers:Routeand that route is not foundhttps://localhost:44302/Controller/SearchStudentAbsences when I submit that search it goes to that false route https://localhost:44302/StudentAbsence/Search which need before the controller the Area name.PartialView to automatically/dynamically know the Controller and the Area ?