Passing data to Master Page in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T16:09:29Z http://stackoverflow.com/feeds/question/78548 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc 13 Passing data to Master Page in ASP.NET MVC Łukasz Sowa 2008-09-17T00:08:39Z 2009-09-30T05:28:38Z <p>What is your way of passing data to Master Page (using ASP.NET MVC) without breaking MVC rules?</p> <p>Personally, I prefer to code abstract controller (base controller) or base class which is passed to all views.</p> http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc/78571#78571 6 Answer by Ian P for Passing data to Master Page in ASP.NET MVC Ian P 2008-09-17T00:12:41Z 2008-09-17T00:12:41Z <p>Abstract controllers are a good idea, and I haven't found a better way. I'm interested to see what other people have done, as well.</p> http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc/78576#78576 1 Answer by mtutty for Passing data to Master Page in ASP.NET MVC mtutty 2008-09-17T00:12:56Z 2008-09-17T00:12:56Z <p>The Request.Params object is mutable. It's pretty easy to add scalar values to it as part of the request processing cycle. From the view's perspective, that information could have been provided in the QueryString or FORM POST. hth</p> http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc/78594#78594 3 Answer by David Negron for Passing data to Master Page in ASP.NET MVC David Negron 2008-09-17T00:15:18Z 2008-09-17T00:15:18Z <p>I did some research and came across these two sites. Maybe they could help.</p> <p><a href="http://weblogs.asp.net/stephenwalther/archive/2008/08/12/asp-net-mvc-tip-31-passing-data-to-master-pages-and-user-controls.aspx" rel="nofollow">ASP.NET MVC Tip #31 – Passing Data to Master Pages and User Controls</a></p> <p><a href="http://geekswithblogs.net/scarpenter/archive/2007/12/14/117724.aspx" rel="nofollow">Passing Data to Master Pages with ASP.NET MVC</a></p> http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc/78616#78616 0 Answer by dimarzionist for Passing data to Master Page in ASP.NET MVC dimarzionist 2008-09-17T00:19:25Z 2008-09-17T00:19:25Z <p>I thing that another good way could be to create Interface for view with some Property like ParentView of some interface, so you can use it both for controls which need a reference to the page(parent control) and for master views which should be accessed from views.</p> http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc/78658#78658 1 Answer by Graphain for Passing data to Master Page in ASP.NET MVC Graphain 2008-09-17T00:27:34Z 2008-09-17T00:27:34Z <p>I find that a common parent for all model objects you pass to the view is exceptionally useful.</p> <p>There will always tend to be some common model properties between pages anyway.</p> http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc/746011#746011 11 Answer by Generic Error for Passing data to Master Page in ASP.NET MVC Generic Error 2009-04-14T01:33:07Z 2009-04-14T01:33:07Z <p>If you prefer your views to have strongly typed view data classes this might work for you. Other solutions are probably more <em>correct</em> but this is a nice balance between design and practicality IMHO.</p> <p>The master page takes a strongly typed view data class containing only information relevant to it:</p> <pre><code>public class MasterViewData { public ICollection&lt;string&gt; Navigation { get; set; } } </code></pre> <p>Each view using that master page takes a strongly typed view data class containing its information and deriving from the master pages view data:</p> <pre><code>public class IndexViewData : MasterViewData { public string Name { get; set; } public float Price { get; set; } } </code></pre> <p>Since I don't want individual controllers to know anything about putting together the master pages data I encapsulate that logic into a factory which is passed to each controller:</p> <pre><code>public interface IViewDataFactory { T Create&lt;T&gt;() where T : MasterViewData, new() } public class ProductController : Controller { public ProductController(IViewDataFactory viewDataFactory) ... public ActionResult Index() { var viewData = viewDataFactory.Create&lt;ProductViewData&gt;(); viewData.Name = "My product"; viewData.Price = 9.95; return View("Index", viewData); } } </code></pre> <p>Inheritance matches the master to view relationship well but when it comes to rendering partials / user controls I will compose their view data into the pages view data, e.g.</p> <pre><code>public class IndexViewData : MasterViewData { public string Name { get; set; } public float Price { get; set; } public SubViewData SubViewData { get; set; } } &lt;% Html.RenderPartial("Sub", Model.SubViewData); %&gt; </code></pre> <p><em>This is example code only and is not intended to compile as is. Designed for ASP.Net MVC 1.0.</em></p> http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc/948875#948875 4 Answer by TheLameDuck for Passing data to Master Page in ASP.NET MVC TheLameDuck 2009-06-04T06:26:58Z 2009-09-21T22:34:46Z <p>Microsoft has actually posted an entry on <a href="http://www.asp.net/LEARN/mvc/tutorial-13-cs.aspx" rel="nofollow">the "official" way</a> to handle this. This provides a step-by-step walk-through with an explanation of their reasoning.</p> <p>In short, they recommend using an abstract controller class, but see for yourself.</p> <p><strong>EDIT</strong></p> <p><a href="http://stackoverflow.com/users/40944/generic-error">Generic Error</a> has provided a better answer below. Please read it!</p> http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc/1496250#1496250 0 Answer by rasx for Passing data to Master Page in ASP.NET MVC rasx 2009-09-30T05:28:38Z 2009-09-30T05:28:38Z <p>The other solutions lack elegance and take too long. I apologize for doing this very sad and impoverished thing almost an entire year later:</p> <pre><code>&lt;script runat="server" type="text/C#"&gt; protected override void OnLoad(EventArgs e) { base.OnLoad(e); MasterModel = SiteMasterViewData.Get(this.Context); } protected SiteMasterViewData MasterModel; &lt;/script&gt; </code></pre> <p>So clearly I have this static method Get() on SiteMasterViewData that returns SiteMasterViewData.</p>