winforms和wpf vs Asp.Net中将数据绑定到DataBound控件略有不同
WPF/Winforms
dataBoundControl.DataSource = someDataSource;
网络
dataBoundControl.DataSource = someDataSource;
dataBoundControl.DataBind(); //<----- the difference
问题:这两种型号有什么区别,一种需要使用.DataBind(),另一种不需要?为什么 winforms/wpf 不需要.DataBind(),为什么 Asp.Net 需要它?
谢谢。