I think I have a problem understanding the correct way to use MVC. The problem I am facing is that I have users and admin users who are allowed to create a campaign, but they use different master pages, etc. Etc.
My solution so far ...
Controllers AdminUserController.cs UserController.cs Views AdminUser CreateCampaign.aspx User CreateCampaign.aspx
But in doing so, I have to duplicate the CreateCampaign () code in both the AdminUserController and the UserController, and I have 2 views to do the same.
Is this the right way to do this, or am I missing a ship somewhere?
Organ grinding monkey
source share