tags:

views:

89

answers:

2

How to draw the table in c#.net 2008.

or suggest any control as table?

i want to display the data in that table.

help me.

+2  A: 

You can use DataGridView component.

Wael Dalloul
A: 

Use

  • GridView Control - if Windows forms
  • DataGridView Control - if ASP.NET
NinethSense