Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC - Code Behind of Master Pages

I am newbie for ASP.NET MVC 1.0. I am converting from a classic application built up with VS2008 .NET3.5. I created a master page, and the menu must be read from the database. Now the code that generate the HTML into the appropriate menu div in classic ASP.NET3.5 VS2008 was in the code behind of the master page.

I cannot understand now where the code beind of the master page is in ASP.NET MVC 1.0?

Anyone has examples?

Thanks

like image 284
David Bonnici Avatar asked Nov 09 '09 08:11

David Bonnici


4 Answers

In MVC there are no longer Code-Behind classes. What you want is a Partial.

You'd use it like so:

<% Html.RenderPartial("MainMenu.ascx", ViewData["Menu"]); %>

If this Menu is going to be in all of your pages you can make your controllers subclass a custom controller class that always fills the Menu data first.

If messing with the MVC inheritance hierarchy is overkill you can also make a MenuController class and use the RenderAction in your view/master:

<% Html.RenderAction<MenuController>(x => x.MainMenu()); %>
like image 136
wm_eddie Avatar answered Sep 28 '22 05:09

wm_eddie


You can still have code behind if you want. In your .master file put:

<%@ Master Language="C#" AutoEventWireup="true" 
Inherits="Site_Master" CodeFile="Site.Master.cs" %>

Then in your .master.cs:

public partial class Site_Master : ViewMasterPage
{
    protected void Page_Load(object sender, EventArgs e)
    {
    }
}
like image 37
Egor Pavlikhin Avatar answered Sep 28 '22 03:09

Egor Pavlikhin


Your master page is now a View, and Views should be passive. In other words, they shouldn't go look up things themselves.

It would be a much more correct approach (within the context of ASP.NET MVC) to pull the required data from the Model.

Take a look at this SO question for a related discussion.

like image 31
Mark Seemann Avatar answered Sep 28 '22 05:09

Mark Seemann


There is a great tutorial on the ASP.NET site that shows how to do exactly this.

Briefly, you pass the data to the master page through the ViewData collection. To get the data into ViewData, create an application level controller. Have the page controllers inherit from the application controller instead of the base MVC controller.

Also, if you need to do things on your master page in reaction to the page being displayed, through this application controller you can tie into the ActionExecuting event. That will provide you information about the context of the page request currently being process.

like image 34
Jeff Siver Avatar answered Sep 28 '22 03:09

Jeff Siver