Diffences between DataGrids in Windows Forms and Asp.Net

T

tshad

I am trying to find the differences between handling of DataGrids in Windows
Forms and Asp.Net.

They are completely different in how you bind to them, get number of rows,
look at columns and rows, selecting rows, handling events, etc.

I know how to handle them in Asp.net, but not as sure when dealing with
DataGrids in a Windows Form.

Where would I find some good articles on these?

Thanks,

Tom
 
T

Tom Shelton

I am trying to find the differences between handling of DataGrids in Windows
Forms and Asp.Net.

They are completely different in how you bind to them, get number of rows,
look at columns and rows, selecting rows, handling events, etc.

I know how to handle them in Asp.net, but not as sure when dealing with
DataGrids in a Windows Form.

Where would I find some good articles on these?

Thanks,

Tom

With out going and looking.... I would suggest searching on google.
My guess is you would find several good articles on codeproject. You
can also look at the documentation - usually, there are samples there.

Just a couple of quick off the cuff suggestions :)
 
C

Cor Ligthert[MVP]

Tom,

Time after time Microsoft departments make the mistake to use the same or
wrong names for total different things. One of those is the DataGrid in
ASPNET and WindowForms.

You can better take any other grid were some have less differences then the
two DataGrid's from Microsoft. (It is not for nothing that the new ones are
named DataGridView and GridView although both are totaly different grids
compared to the DataGrid's)

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top