I have a separate section (route) of my website that I would like to use a different layout/css etc.
So when users at the main section of my website they get the default layout. But when they log in and go to the store, the store section (route) uses a different layout/css.
So...
- www.blahblahblah.com/
- www.blahblahblah.com/admin/
- www.blahblahblah.com/home/contactus/
...all use the default _Layout
BUT...
- www.blahblahblah.com/store/
- www.blahblahblah.com/store/admin/
...use _LayoutStore
I've seen this done based off of roles here (http://forums.asp.net/t/1653362.aspx/1) and here (How to use multiple Layout in MVC 3?) BUT I don't want to do that. I need my layout selection based off of what route the customer takes (aka view they're inside).
Thank you in advance for any and all help.