Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3238290
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T17:50:12+00:00 2026-05-17T17:50:12+00:00

I have an asp.net masterpage, and All my controllers inherit from a controller base.

  • 0

I have an asp.net masterpage, and All my controllers inherit from a controller base. All my view models inherit from ViewBase. How can I have a base set of data in the master page that is populated from the base controller into the viewbase, then into the masterpage?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T17:50:13+00:00Added an answer on May 17, 2026 at 5:50 pm

    What I have done in the past is used ViewData to populate my master page.

    Inside your master page you can put:

    <% var baseModel = ViewData["baseModel"] as BaseViewModel; %>
    

    then

    baseModel.xx for whatever properties you need throughout your masterpage.

    In my ControllerBase, I then override OnActionExecuting and popluate the viewData with an instance of my baseViewModel.

        protected override void OnActionExecuted(ActionExecutedContext filterContext)
        {
            base.OnActionExecuted(filterContext);
            if (filterContext.Canceled || filterContext.Exception != null)
                return;
    
             var viewResult = filterContext.Result as ViewResult;
             var viewModel = new BaseViewModel();
             PopulateBaseViewModel(viewModel);
             viewResult.ViewData["baseModel"] = viewModel;            
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In ASP.NET MVC, How do I make a partial view available to all controllers?
I have an ASP.net master page. In this master, I have all my css
I have an asp.net 4.0 framework application that consists of a Masterpage and contentplaceholders.
i have multilingual asp.net site. there is a masterpage and default.aspx. I put two
first of all: I'm new to Asp.Net MasterPages and jQuery. I have a Asp.Net
Hi i have a MasterPage (ASP.Net MVC) which contains a couple of loads for
I have an ASP.Net MasterPage with a PlaceHolder element. The contents of the PlaceHolder
I am new to PHP. How can I create a base (like an asp.net
I have very simple a ajax enabled asp .net website with masterpage. I have
I have asp.net mvc application, that uses razor view engine. I want to send

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.