Tagged Questions
The ui-helper tag has no wiki summary.
11
votes
7answers
18k views
asp.net mvc radio button state
I'm trying out asp.net mvc for a new project, and I ran across something odd. When I use the MVC UI helpers for textboxes, the values get persisted between calls. But, when I use a series of radio ...
3
votes
1answer
518 views
In MVC 2, how to annotate a class for an UI Helper Template (not a property)?
I know this works for single properties as per Scott Guthrie's blog to auto-magically use a partial view to render a partial model passed to it (UI Helper like in dynamic data):
...
1
vote
2answers
938 views
ASP.NET MVC UI Template: How to mix an IList Model property with EditorFor( m => m.subModel)?
Say you have this:
public class ShoppingCart {
public IList<CartItem> cartItems {get; set; }
}
And you do this to render the class:
<%= EditorFor( m => m.ShoppingCart, ...
1
vote
2answers
206 views
Using ASP.Net MVC UI Helpers in a classic ASP.Net project
Just wondering if anyone know if in general you can use the MVC UI helpers in a classic ASP.Net project. Obviously you would have to be mindful not to you the form helper, etc. But I have some helpers ...