Which is used more: GridLayout or PageLayout

  • Thread starter Thread starter Brad
  • Start date Start date
B

Brad

I'm starting a major project and want to get a feel for
what is more "industry standard" for asp.net page design.

I would greatly appreciate any feedback regarding what
people use as their default layout mode for page design.

Thank you.
 
I believe that grid layout is the default isn't it? If so I'm betting that
then :}
 
FYI... Even if I have GridLayout in essence I still use FlowLayout since I
never EVER set the coordinates for anything on my page.
 
yeap.... cant be bothered to changing it.... serves the purpose as is....
%>)

HD
 
no it doesn't.... Not unless the coordinates are included in the html to
start, which in my case they aren't....
When you drop a control onto the Design View of a webform it will put the
positions, but I remove them. Beyond that I manully create my aspx from the
HTML view, not the Deisgn View.
I avoid the design view unless absolutely necessary since it tends to screw
things up in my code-behinds.
 
Brad said:
I'm starting a major project and want to get a feel for
what is more "industry standard" for asp.net page design.

I would greatly appreciate any feedback regarding what
people use as their default layout mode for page design.

Thank you.

I don't know which is used more, but I always switch to FlowLayout -
absolute positioning in web pages is generally considered bad practice.

If you need it, then use GridLayout, otherwise stick to FlowLayout so
people can resize their browser and have things reposition nicely. If
you need to have some control over the layout, HTML tables are what is
generally used.
 
absolute positioning in web pages is generally considered bad practice.

I disagree here. It mostly depends on what the web page holds. If it's a
credit card form type application, then sure, flow it. it doesn't matter. if
on the other hand you are writing full blown applications on the web then
layout is key. i write applications like these. when users resize their
browser they absolutely do not want to see the text box flow to the next
line. it doesn't happen normally in windows applications and that is what
they expect. Web applications have become powerful and complex enough to no
longer fit a mold of simple form submission engines. users have come to
expect windows desktop behavior whether or not the application is running on
the desktop or on the web.
 
Back
Top