any easy way to do this?-put items in table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a .net web app with a page that has several controls such as a
datagrid, a dropdown list box buttons, labels with many controls bound to
datasources. The page was done with grid layout. Just wondering if there is
an easy way to put everything in a table, 1 control for each row for example
to give it a border around each item and allow for expansion of datagrids,
etc.
thanks.
 
--create a table on your page in the html section.
--put an ASP:placeholder in the cell where you want the control,
--dynamically load the controls from script
 
Hi thanks for the information. I tried this and it seemed to work except ran
into problems accessing data from the table. For example I have a
dropdownlist box and when a button is selected I detect the selections, but
with the control in the table it is not able to see the selections.

--
Paul G
Software engineer.


TJS said:
--create a table on your page in the html section.
--put an ASP:placeholder in the cell where you want the control,
--dynamically load the controls from script
 
not sure what you mean by :

"I detect the selections, but with the control in the table it is not able
to see the selections."



Paul said:
Hi thanks for the information. I tried this and it seemed to work except
ran
into problems accessing data from the table. For example I have a
dropdownlist box and when a button is selected I detect the selections,
but
with the control in the table it is not able to see the selections.
 
Back
Top