In my MVC4 web application I have both a GlobalController
which all controllers will inherit from so I have a single place that has all the common code that must run on each and every page. I also have a _MasterLayout.cshtml
page that all my views use as there layout page. So far I have been able to put code in my GlobalController
to fill ViewBag
data with stuff to propagate dynamic data to the _MasterLayout.cshtml
file.
I now need to figure out how to place buttons and/or links that people can click on to do things like register, login, logout, etc. As you could imagine these functions could be used on any page in my site so I would like the code for those to live in my GlobalController
. I have already created public
classes inside the GlobalController
to do the actions I want but what I can not figure out is how to wire up a click on either a link or button placed on the _MasterLayout.cshtml
file to the GlobalController
public class?
I DO NOT WANT TO RENDER NEW VIEWS!