Asp.net MVC User Control ViewData - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T06:40:16Z http://stackoverflow.com/feeds/question/18787 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/18787/asp-net-mvc-user-control-viewdata 3 Asp.net MVC User Control ViewData Ryan Eastabrook 2008-08-20T20:46:23Z 2008-08-28T06:41:08Z <p>When a controller renders a view based on a model you can get the properties from the ViewData collection using the indexer (ie. ViewData["Property"]). However, I have a shared user control that I tried to call using the following:</p> <pre><code>return View("Message", new { DisplayMessage = "This is a test" }); </code></pre> <p>and on my Message control I had this:</p> <pre><code>&lt;%= ViewData["DisplayMessage"] %&gt; </code></pre> <p>I would think this would render the DisplayMessage correctly, however, null is being returned. After a heavy dose of tinkering around, I finally created a "MessageData" class in order to strongly type my user control:</p> <pre><code>public class MessageControl : ViewUserControl&lt;MessageData&gt; </code></pre> <p>and now this call works:</p> <pre><code>return View("Message", new MessageData() { DisplayMessage = "This is a test" }); </code></pre> <p>and can be displayed like this:</p> <pre><code>&lt;%= ViewData.Model.DisplayMessage %&gt; </code></pre> <p>Why wouldn't the DisplayMessage property be added to the ViewData (ie. ViewData["DisplayMessage"]) collection without strong typing the user control? Is this by design? Wouldn't it make sense that ViewData would contain a key for "DisplayMessage"?</p> http://stackoverflow.com/questions/18787/asp-net-mvc-user-control-viewdata/18830#18830 1 Answer by Ryan Eastabrook for Asp.net MVC User Control ViewData Ryan Eastabrook 2008-08-20T21:03:10Z 2008-08-20T21:03:10Z <p>Of course after I create this question I immediately find the answer after a few more searches on Google</p> <p><a href="http://forums.asp.net/t/1197059.aspx" rel="nofollow"><a href="http://forums.asp.net/t/1197059.aspx" rel="nofollow">http://forums.asp.net/t/1197059.aspx</a></a></p> <p>Apparently this happens because of the wrapper class. Even so, it seems like any property passed should get added to the ViewData collection by default.</p> <p>I really need to stop answering my own questions :(</p> http://stackoverflow.com/questions/18787/asp-net-mvc-user-control-viewdata/31726#31726 3 Answer by Haacked for Asp.net MVC User Control ViewData Haacked 2008-08-28T06:41:08Z 2008-08-28T06:41:08Z <p>The ViewData.Eval("DisplayMessage") method should work for you.</p>