What’s the difference between the System.Web.UI.WebControls.DataGrid and System.Windows.Forms.DataGrid?

What’s the difference between the System.Web.UI.WebControls.DataGrid and System.Windows.Forms.DataGrid?



- System.Web.UI.WebControls.DataGrid doesn’t have the inherited support for the master data structure that is detailed. Whereas, the support is provided, for the inherited data structure that is used in System.Windows.Forms.DataGrid.

- System.Web.UI.WebControls.DataGrid doesn’t provide the two way data writing and binding support. Whereas, System.Windows.Forms.DataGrid provides a two way binding of data, source.

- System.Web.UI.WebControls.DataGrid provides manual data entry and allows only the editing of one row at a time in the Grid. Whereas, System.Windows.Forms.DataGrid provides good customization options with the Web Form features.

- System.Web.UI.WebControls.DataGrid inherits the support for the sorting and handling of the order to sort out the grid contents. Whereas, System.Windows.Forms.DataGrid provides the binding and sorting of the grid contents to any object.
Post your comment