Is there a way to set the layout from the controller?
have tried:
ViewData["Layout"] = "..."
return View("view", Model);
I know it will sound odd with some people....
|
Is there a way to set the layout from the controller? have tried:
I know it will sound odd with some people.... |
|||
|
|
|
View method has overload to set its master layout something like this
|
|||
|
|
|
Daren Dimitrov has a very nice answer on this one with Attributes: How do I specify different Layouts in the ASP.NET MVC 3 razor ViewStart file? |
|||
|
|
|
Using your code, you could put this in your View:
|
|||
|
|
|
If you have a _ViewStart.cshtml file in your Views directory, you can automatically set the layout for all views within the same folder (and sub-folders):
|
|||||
|