Taking account of screen resolution

  • Thread starter Thread starter Franck
  • Start date Start date
F

Franck

Hello,
In asp .net is there any way of resizing
the component second the screen resolution?
If not is there any workaround?
thank you
Franck
 
you'll have to make it accessible to the clientside code (javascript event
tied to it's name, etc). There's really no much you can do from the
serverside....
I tend to just use fixed sizes for most of the layout, then use a 100% for
the last item, so that it fills the available space. This would be for things
like the header width, left menu height, etc...
 
Franck,

You need to use relative size properties, like width="100%".

Eliyahu
 
If you need more granular control than a simple percentage, you'll have
full access to window size, screen resolution, color depth, etc. on the
client. You'll also have the ability to resize and move the browser
itself.

Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top