Anchoring a Button on a Webform

  • Thread starter Thread starter Brian Conway
  • Start date Start date
B

Brian Conway

I have a webform that I have a datagrid on that I want a button at the
bottom of the grid to maintain its position with the datagrid, if the grid
grows large then button needs to move down with it, and if it is smaller it
needs to move up. Everything regarding anchoring that I have found is with
Windows Forms, is there any way to do this with a Web Form?
 
Don't use grid layout, use flow layout. That way all elements are positioned
one after the other and not at specified coordinates. You could use a table
if you need things to line up, etc.
 
Back
Top