any good recommendations for databinding. i am starting to look into WPF more and i want to fully understand the how databinding work under the hood here. also, WPF is just one example as i assume there is a common pattern with tech like asp.net mvc data binding, etc.
+1
A:
This is a really nice introductory article on topic.
I can't comment on the semantics of databinding within asp.net mvc; AFAIK in MVC the Controller provides the information but is not aware of the View, and the View takes that information and presents it to the user (and passes user input back to the Controller)
In many ways this is similar to an MVP or MVVM pattern often preferred by WPF developers...
EDIT: Added msdn Binding article
Hope this helps :)
IanR
2009-10-19 01:43:52
this is a good description of how to use binding but doesn't explain what is happening under the hood. i am trying to understand how its working at a low level
ooo
2009-10-19 01:56:01
Oh OK... well, the msdn article (I'll edit it to provide the link) goes into more detail to explain Binding Target, Source, Binding type, etc... but I'm not sure if it goes fully "under the hood"...
IanR
2009-10-19 02:25:11