views:

64

answers:

1

We are having MVC view where user can select few fields. I want to read the data from the view. Currently using model binders i am able to read only the changeable data (from text box) into the object. How do i read the data held in label in the view using model binders?

A: 

Eric hexter has done this in his opinionated input builders library. It's open source, so you could have a look there.

Adrian Grigore