I have two action methods in my controller. I want both to return one view.
The reason is because I have conditional checks in my view that checks if a property is null then don't show a div and if a user clicks on load button then the same view needs to be returned by setting the property of the model and then the div is shown.
This logic is required for atleast 15 times and I want to create separate actions that return the model but one view. Is it possible?