views:

27

answers:

3

want is,

can perform all operations on a table of a database,

that is create delete insert records edit records/update etc.

have used all the controls

  • gridview
  • datalist
  • detailsview
  • formview
  • listview

i would like to have your opinion as to

"which control is the best to use, easy to program, and is user friendly, simple coding all the good points."

A: 

GridView is your best bet if you want Create/Read/Update/Delete operations.

The others all require a bit more work if you want to be able to perform all of the operations.

Justin Niessner
All controls are ASP.NET server-side controls so I think OP is taking about ASP.NET. So you could mean `GridView`
abatishchev
A: 

Personally i've always preferred the ListView. It will give you all the automatic Create, read, update, delete operations and think it allows for the easiest customization.

Abe Miessler
A: 

If you want to use custom, complex UI then FormView.

If you have small amount of fields (2-10) - GridView,

If large - DetailsView.

abatishchev