I'm building this website in ASP.Net MVC that basically will have a default look. Depending of the institution entering the portal the color, banner and greetings will change.
Example: www.portal.com/Institution1
Color: Blue
Banner: Photo1
www.portal.com/Institution2
Color: Green
Banner: Photo2
I'm trying to accomplish this in the BundleConfig.cs file but I haven't found a solution.
If somebody enter the portal using www.portal.com I will use:
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
If somebody enter the portal using www.portal.com/Institution1 I want to use:
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/Institution1/Institution1.css",
"~/Content/site.css"));
If somebody enter the portal using www.portal.com/Institution2 I want to use:
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/Institution2/Institution2.css",
"~/Content/site.css"));
Is there any way of accomplished this?