Whether do use html Table, ASP table or Datagrid.

  • Thread starter Thread starter DiCocco
  • Start date Start date
D

DiCocco

I posed my question before.
I have a table object created in VB code that contains
these fields: time, person1, person2, person3, person4.

The code loops through the different times in a sql server
table and stores the time, and person's names in person1,
person2, person3 and person4 of the table object.

The problem is I need to display the data stored in this
table object in either a ASP Table, HTML table or a ASP
Datagrid. But I need to be able to move these names around
to different time slots if necessary. By dragging the
mouse across one/several names and dropping on a different
time slot. Can this be done. Please help me.....
 
DiCocco said:
I posed my question before.
I have a table object created in VB code that contains
these fields: time, person1, person2, person3, person4.

The code loops through the different times in a sql server
table and stores the time, and person's names in person1,
person2, person3 and person4 of the table object.

The problem is I need to display the data stored in this
table object in either a ASP Table, HTML table or a ASP
Datagrid. But I need to be able to move these names around
to different time slots if necessary. By dragging the
mouse across one/several names and dropping on a different
time slot. Can this be done. Please help me.....

You can do this each of these styles. But, I think ASP DataGrid might
help you better.. I am not sure about the d&d part. For that you will
need to code the client side DHTML, and that probably will not differ
between the different tables..
I am not sure what you are looking for.. :(
 
Back
Top