ASPX page resize

  • Thread starter Thread starter Fabrizio
  • Start date Start date
F

Fabrizio

Hi,
can and aspx page be resized depending on the requester
dysplay resolution?
how?
Thank you,
Fabrizio
 
Aspx pages are resized automatically depending on the web browser window's
dimensions. However, when you "draw" controls on a web form, the widths and
heights of your controls are permanent. So you might consider delving into
the HTML and CSS code of the web forms, and change the widths to be
determined in terms of percentages rather than pixels.

Jon
 
Back
Top