Which data grid to use

  • Thread starter Thread starter R Agam
  • Start date Start date
R

R Agam

Hi,

For windows app which data grid is better to use, the one from
(System.Web.UI.WebControls) or from (System.Windows.Forms)?



Thanks,
Ronen
 
For a Windows app you use System.Windows.Forms namespace
For the Web, you use System.Web.UI.WebControls

They're placed in those namespaces for a reason. They work better/best/only
for the environment they were designed to run in.

-Noah Coad
Microsoft MVP & MCP [.NET/C#]
 
Back
Top