Resize asp.net applicattion to fit screen resolution

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Darksider
    New Member
    • Jun 2008
    • 1

    Resize asp.net applicattion to fit screen resolution

    Hi.
    I´m looking to resize all the webform elements in a asp.net applicattion.
    I search a lot, bu i don´t see nothing.

    If there is anyone that can help me please.

    Thank you.
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    You should be able to achieve this through dhtml or ajax. Use a click event to alter the style of each control. HTH.

    Comment

    • Curtis Rutland
      Recognized Expert Specialist
      • Apr 2008
      • 3264

      #3
      Most ASP.NET controls have a Height and Width attribute. But I don't think that there is a method to automatically scale all controls.

      Comment

      • kenobewan
        Recognized Expert Specialist
        • Dec 2006
        • 4871

        #4
        Originally posted by insertAlias
        Most ASP.NET controls have a Height and Width attribute. But I don't think that there is a method to automatically scale all controls.
        That's why I suggest dhtml, controls may have a style applied. Although if the aim is to have them proportional to page it may be easier to set the style to percent width & height - warning results may vary! Otherwise the style is altered through the client side script. HTH.

        Comment

        Working...