Controls Layout

  • Thread starter Thread starter brian
  • Start date Start date
B

brian

When I am designing an aspx page and drag a control such
as the repeater control onto the page, it always defaults
to the upper left of the page. Is there a way to move
the control to where you want it or do you have to do
that in the html coding?
 
You can do that in HTML coding if you want.
But you might prefer to set your page's PageLayout property to GridLayout,
which allows you to easily place your controls on the exact pixel locations
that you specify.
 
Back
Top