top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

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

0 votes
337 views
What’s the difference between the System.Web.UI.WebControls.DataGrid and System.Windows.Forms.DataGrid?
posted Oct 3, 2016 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
  • 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.

answer Oct 3, 2016 by Shivaranjini
...