I have 4 different ActionResult running in 2 different Controllers, I have created a partial view StudentList, I want to use same partialView as the model is same.
from 1st ActionResult I want to display StudentList by Class from 2nd ActionResult I want to display StudentList by Class Teacher from 3rd ActionResult I want to display StudentList by Fee Not Paid from 4th ActionResult I want to display StudentList by Absent Student
all 4 return a Model type of Student. with fields StudentName, ParentMobileNo
Is it possible not to create 4 different View and use single partial view or single view to display the result.
Regards