Passing data to Master Page in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T16:09:29Zhttp://stackoverflow.com/feeds/question/78548http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc13Passing data to Master Page in ASP.NET MVCŁukasz Sowa2008-09-17T00:08:39Z2009-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#785716Answer by Ian P for Passing data to Master Page in ASP.NET MVCIan P2008-09-17T00:12:41Z2008-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#785761Answer by mtutty for Passing data to Master Page in ASP.NET MVCmtutty2008-09-17T00:12:56Z2008-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#785943Answer by David Negron for Passing data to Master Page in ASP.NET MVCDavid Negron2008-09-17T00:15:18Z2008-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#786160Answer by dimarzionist for Passing data to Master Page in ASP.NET MVCdimarzionist2008-09-17T00:19:25Z2008-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#786581Answer by Graphain for Passing data to Master Page in ASP.NET MVCGraphain2008-09-17T00:27:34Z2008-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#74601111Answer by Generic Error for Passing data to Master Page in ASP.NET MVCGeneric Error2009-04-14T01:33:07Z2009-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<string> 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<T>()
where T : MasterViewData, new()
}
public class ProductController : Controller
{
public ProductController(IViewDataFactory viewDataFactory)
...
public ActionResult Index()
{
var viewData = viewDataFactory.Create<ProductViewData>();
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; }
}
<% Html.RenderPartial("Sub", Model.SubViewData); %>
</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#9488754Answer by TheLameDuck for Passing data to Master Page in ASP.NET MVCTheLameDuck2009-06-04T06:26:58Z2009-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#14962500Answer by rasx for Passing data to Master Page in ASP.NET MVCrasx2009-09-30T05:28:38Z2009-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><script runat="server" type="text/C#">
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
MasterModel = SiteMasterViewData.Get(this.Context);
}
protected SiteMasterViewData MasterModel;
</script>
</code></pre>
<p>So clearly I have this static method Get() on SiteMasterViewData that returns SiteMasterViewData.</p>