Category Archives: Data Binding

Databinding: Web Forms vs. Windows Forms

In Windows Forms, all data binding done by the designer is saved as code in the choosen language: C# or VB.NET:   // // dataGrid1 // this.dataGrid1.DataMember = "Customers"; this.dataGrid1.DataSource = this.dataSet11;   On Web Forms, it’s somewhat different, because … Continue reading

Posted in Data Binding | Leave a comment