views:

78

answers:

1

I have been developing in Actionscript 3 / Flex Builder 3 for a while now and am pretty comfortable with data binding when developing those types of applications.

Recently, I've gotten into some C# and for the life of me can't find a good reference on how to data bind.

I was wondering if someone could give me some info on how to data bind and perhaps some of the caveats found when binding in .Net (Do's and Dont's)

+2  A: 

Here is a link to data binding in Windows Forms:

http://msdn.microsoft.com/en-us/library/ef2xyb33.aspx

And in Windows Presentation Foundation:

http://msdn.microsoft.com/en-us/magazine/cc163299.aspx

And in ASP.NET:

http://support.microsoft.com/kb/307860

casperOne