I have an EmployeeController and ShiftController. In the Index View of EmployeeController I show EmployeeDetails with options of Edit, Delete and GetShifts (this gets all the shifts of that employee - EmpShifts.aspx).
In EmpShifts.aspx, I want to give a link to Create New Shift. I want to know how to call Create View of Shifts from EmpShifts.aspx.
Am I having the wrong design structure. Suggestions on that are welcome.