When you draw controls on a Web form, you have two options for how those controls are arranged:
Grid layout
This is the default. Controls are placed exactly where you draw them, and they have absolute positions on the page. Use grid layout for Microsoft Windows–style applications, in which controls are not mixed with large amounts of text. Pages using grid layout will not always display correctly in non-Microsoft browsers.
Flow layout
This layout positions controls relative to other elements on the page. If you add elements at run time, the controls that appear after the new element move down. Use flow layout for document-style applications, in which text and controls are intermingled.
Thursday, September 18, 2008
Subscribe to:
Post Comments (Atom)
1 comment:
Are these the only layouts in .Net or the only one's typically used.
I think Java has a few more in Swing, but one typically only uses two or three of them.
Post a Comment