Naming of ASP.NET controls inside User Controls with ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T11:28:46Z http://stackoverflow.com/feeds/question/409823 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/409823/naming-of-asp-net-controls-inside-user-controls-with-asp-net-mvc 0 Naming of ASP.NET controls inside User Controls with ASP.NET MVC skb http://stackoverflow.com/users/14101 2009-01-03T20:55:42Z 2009-01-04T01:16:35Z <p>I am wondering if there is a way to make ASP.NET controls play nicely with my ASP.NET MVC app. Here is what I am doing. </p> <p>I have an order page which displays info about a single Order object. The page will normally have a bunch of rows of data, each row representing an OrderItem object. Each row is an ASP.NET User Control. On the user control there is a form element with two text boxes (Quantity and Price), and an update button. </p> <p>When I click the update button, I expect the form to post the data for that individual OrderItem row to a controller method and update the OrderItem record in the database. </p> <p>Here is my problem: When the post happens, the framework complains because the fields on the form don't match the parameters on the controller method. Each form field is something like "OrderItem_1$Quantity" or "OrderItem_2$Price" instead of just "Quantity" or "Price" which would match my method parameters. </p> <p>I have been told that I can overcome this by making sure that the <strong>ID</strong>s of all my controls are unique for the page, but allow the <strong>NAME</strong>s to be repeated between different forms, so that if a form for an individual row is posted, the name can be something that will match what is on my controller method. </p> <p>The only problem is that I am using ASP.NET controls for my text boxes (which I REALLY want to continue doing) and I can't find any way to override the name field. There is no Name propery on an ASP.NET control, and even when I try to set it using the Attributes accessor property by saying "control.Attributes["Name"] = "Price";" it just adds another name= attribute to the HTML tag which doesn't work. </p> <p>Does any one know how I can make this work? I really don't like all of the HtmlHelper functions like TextBox and DropDown because I hate having my .aspx be so PHP or ASP like with the &lt;%%> tags and everything. Thanks!</p> http://stackoverflow.com/questions/409823/naming-of-asp-net-controls-inside-user-controls-with-asp-net-mvc/409977#409977 0 Answer by Sypress for Naming of ASP.NET controls inside User Controls with ASP.NET MVC Sypress http://stackoverflow.com/users/50506 2009-01-03T22:11:32Z 2009-01-03T22:11:32Z <p>Your question seems complicated in describing the problem , but if you post your code , and give me more details I hope to help .</p> <p>Regards</p> <p>-MHM-</p> http://stackoverflow.com/questions/409823/naming-of-asp-net-controls-inside-user-controls-with-asp-net-mvc/410217#410217 1 Answer by Mike Scott for Naming of ASP.NET controls inside User Controls with ASP.NET MVC Mike Scott http://stackoverflow.com/users/43649 2009-01-04T01:16:35Z 2009-01-04T01:16:35Z <p>I think you're straddled between two worlds of ASP.NET and ASP.NET MVC. You really need to use the Html.TextBox methods, etc. in MVC. This gives you complete control over the markup, which is one of the main benefits of MVC.</p> <p>The very problem you're having with control over the generated HTML, e.g. getting two name attributes, is exactly what MVC is designed to address. If you stop fighting it and go with the flow, it'll work much better.</p> <p>&lt;% %> tags aren't a problem unless you have logic in there. Putting simple presentation on your view is fine.</p> <p>If you don't like this, then maybe it's better to stick with standard ASP.NET.</p>