How can I modify the behavior of the autobinding in ASP.net MVC?
For instance, suppose I have a simple Employee object. One of the fields might be hiredate. When this field is bound to a textbox, it displays mm/dd/yyyy hh:mm:ss instead of just the date.
I know I can modify the view to add formatting, but I'm pretty sure I the autobinding can be modified, I'm just not sure how.
Edit
If possible, please include sample code.