B
Bob Rosen
I would like to place some button controls on a web page underneath a
DataGrid control. Since the height of the DataGrid depends on the number of
rows displayed, which is determined by user selections, I need to set the
position of the button controls at runtime. With a Windows form I could do
it with:
Button.Top = Datagrid.Top + Datagrid.Height + <offset>
Unfortunately, the Top property is not provided for web server controls.
How, then, can I do it?
Bob Rosen
DataGrid control. Since the height of the DataGrid depends on the number of
rows displayed, which is determined by user selections, I need to set the
position of the button controls at runtime. With a Windows form I could do
it with:
Button.Top = Datagrid.Top + Datagrid.Height + <offset>
Unfortunately, the Top property is not provided for web server controls.
How, then, can I do it?
Bob Rosen