user controls and asp.net mvc - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T07:56:12Zhttp://stackoverflow.com/feeds/question/13561http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/13561/user-controls-and-asp-net-mvc2user controls and asp.net mvcDragan Panjkov2008-08-17T08:25:46Z2008-08-28T03:03:02Z
<p>Here is one trivial question, but I am not sure how to handle that.
I need to display list of categories on every page, and to be able to choose items from specific category to be displayed. I use asp.net mvc, and chosen to create user control that will display categories. My question is: What is the best approach to pass data to user control. I already found some blog posts</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"><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">http://weblogs.asp.net/stephenwalther/archive/2008/08/12/asp-net-mvc-tip-31-passing-data-to-master-pages-and-user-controls.aspx</a></a></p>
<p><a href="http://blog.matthidinger.com/2008/02/21/ASPNETMVCUserControlsStartToFinish.aspx" rel="nofollow"><a href="http://blog.matthidinger.com/2008/02/21/ASPNETMVCUserControlsStartToFinish.aspx" rel="nofollow">http://blog.matthidinger.com/2008/02/21/ASPNETMVCUserControlsStartToFinish.aspx</a></a></p>
<p>I would like also to hear your opinion.</p>
<p>PS. I'd like to hear Jeff's opinion, especially because of his experience with UC's on Stackoverflow</p>
http://stackoverflow.com/questions/13561/user-controls-and-asp-net-mvc/13580#135802Answer by Hrvoje for user controls and asp.net mvcHrvoje2008-08-17T10:30:14Z2008-08-17T10:30:14Z<p>I'm using mvc components, which replaced ascx user controls in preview 4.<br />
Example:
<a href="http://blog.wekeroad.com/blog/asp-net-mvc-preview-4-componentcontroller-is-now-renderaction/" rel="nofollow">http://blog.wekeroad.com/blog/asp-net-mvc-preview-4-componentcontroller-is-now-renderaction/</a><br />
So, you call components action from View, which then choose View to render. You can pass data in this call also. </p>
http://stackoverflow.com/questions/13561/user-controls-and-asp-net-mvc/13584#135841Answer by Dragan Panjkov for user controls and asp.net mvcDragan Panjkov2008-08-17T11:02:40Z2008-08-17T11:02:40Z<p>it is the mvc futures project. i will probably try this
<a href="http://forums.asp.net/t/1303328.aspx" rel="nofollow"><a href="http://forums.asp.net/t/1303328.aspx" rel="nofollow">http://forums.asp.net/t/1303328.aspx</a></a>. I need to render menu with categories.</p>