Passing data from Controller to a User Control View with ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:53:57Z http://stackoverflow.com/feeds/question/403509 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/403509/passing-data-from-controller-to-a-user-control-view-with-asp-net-mvc 1 Passing data from Controller to a User Control View with ASP.NET MVC skb 2008-12-31T17:15:09Z 2008-12-31T17:44:20Z <p>I have a View class (OrderView.aspx) which shows the details of an order (Account Name, Order Date) as well as a list of order lines via the Repeater control. Each order line is represented by a User Control View (OrderLineView.ascx) which shows the details of the order line (Item Name, Quantity, Price). I have a model object called Order which I use as the data source for all of this, which I pass as the model object for the view.</p> <p>Each OrderLineView user control has a Save and a Delete button. I have the Save button posting the contents of a form within the OrderLine control to a Save method on the Controller and then RedirectToAction back to the same Order page (this refreshes the whole page, nothing AJAXy about it). I have the Delete button linking to a method on the Controller that tries to delete, and then RedirectToAction back to the same Order page. If the delete fails, however, I want a little error message to show up next to the delete button when the page renders again(remember, there is a delete button for every order line on the page, so I only want the message next to the one I clicked). My questions:</p> <p>1 - How do I pass this data from my Controller method to the specific User Control? Should I somehow add it in to the model? Seems like a bad idea (since it really isn't part of the model).</p> <p>2 - Should I have a OrderLineController for the OrderLine operations as well as a OrderController for Order operations? I just want to know if best practice is to have a separate Controller for every view.</p> <p>3 - I have seen how some people might call RedirectToAction with an anonymous type value like this:</p> <pre><code>RedirectToAction("ViewOrder", new { Id = 1234, Message = "blabla"}); </code></pre> <p>but this makes the Message value show up in the URL string. I am OK with that, but would prefer that it doesn't show if possible.</p> <p>4 - Also, for accessing properties of the Model from within the view, I find myself doing this all of the time:</p> <pre><code>foo(((someModelType) this.ViewData.Model).SomeProperty); </code></pre> <p>I don't like this for a number of reasons, one of which is the fact that I don't want my view to be coupled with the type of my model (which is why I am using ViewPage instead of ViewPage). I would much prefer to be able to have a call like this:</p> <pre><code>foo(ModelEval("SomeProperty")); </code></pre> <p>Is there such a thing? I have written my own, but would like it if I didn't have to.</p> http://stackoverflow.com/questions/403509/passing-data-from-controller-to-a-user-control-view-with-asp-net-mvc/403579#403579 1 Answer by Todd Smith for Passing data from Controller to a User Control View with ASP.NET MVC Todd Smith 2008-12-31T17:36:38Z 2008-12-31T17:42:42Z <p>Since your OrderLine has a unique ID you can use that to construct a key to be placed in the ModelState errors container.</p> <pre><code>public ActionResult Delete(int? Id) { ModelState.AddModelError("OrderLine" + Id.Value, "Error deleting OrderLine# " + Id.Value); ... } </code></pre> <p>and then use the ValidatinoMessage helper. This will check the ModelState to see if an error exists and if it does it will display the message. Otherwise it's blank.</p> <pre><code>&lt;%= Html.ValidationMessage ("OrderLine" + Id)%&gt; </code></pre> <p>In the next release of MVC Model will become a top level property so the following</p> <pre><code>foo(((someModelType) this.ViewData.Model).SomeProperty); </code></pre> <p>can be written as</p> <pre><code>foo(Model.SomeProperty); </code></pre> <p>Model objects should already be typed unless you're using <em>public object</em> as a property?</p> http://stackoverflow.com/questions/403509/passing-data-from-controller-to-a-user-control-view-with-asp-net-mvc/403599#403599 3 Answer by Rob Rodi for Passing data from Controller to a User Control View with ASP.NET MVC Rob Rodi 2008-12-31T17:44:20Z 2008-12-31T17:44:20Z <h1>1</h1> <p>Check out ModelState.</p> <pre><code>ViewData.ModelState.AddModelError("something.Name", "Please enter a valid Name"); </code></pre> <p>ModelState is actually a dictionary, so you could identify the errors on a per-control basis. I don't know if this is a best practice, but it would probably work. Try something along the lines of </p> <pre><code>ViewData.ModelState.AddModelError("something#3.Name", "Please enter a valid Name"); </code></pre> <p>and in your view, you could put</p> <pre><code>&lt;%= Html.ValidationMessage(string.format({"something{0}.Name", YourUniqueId))%&gt; </code></pre> <h1>4</h1> <p>You can strongly type your view, so you don't need that cast, but if you're concerned about tightly coupling, this may put you off. But having the strong type there is no more tightly coupled than having a magic string point to that property of the model anyway. The former just gives you type safety and the glory that is intellisense. </p>