|
 |
asp_web_howto thread: Client settings
Message #1 by "Elildo Mancebo reis" <elildo@m...> on Wed, 16 Oct 2002 19:46:58
|
|
Is it possible to know whether the client is 1024x768 or 800x600 or
whatever?
Thanks
Elildo - from Brazil
Message #2 by "Ken Schaefer" <ken@a...> on Thu, 17 Oct 2002 12:03:56 +1000
|
|
You can use client-side javascript to get this. Then post the information
back to the server.
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Elildo Mancebo reis" <elildo@m...>
Subject: [asp_web_howto] Client settings
: Is it possible to know whether the client is 1024x768 or 800x600 or
: whatever?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message #3 by "Craig Flannigan" <ckf@k...> on Thu, 17 Oct 2002 09:18:21 +0100
|
|
You'll need Javascript for this...
<SCRIPT LANGUAGE="JavaScript">
document.write(screen.width," x ",screen.height);
</script>
This will print on screen the current resolution, although it does not
specifiy if the user has maximised their window to the full screen.
HTH
Craig.
-----Original Message-----
From: Elildo Mancebo reis [mailto:elildo@m...]
Sent: 16 October 2002 19:47
To: ASP Web HowTo
Subject: [asp_web_howto] Client settings
Is it possible to know whether the client is 1024x768 or 800x600 or
whatever?
Thanks
Elildo - from Brazil
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
_____________________________________________________________________
Please contact I.T. Support if you have received this email in error.
This e-mail has been scanned for all viruses by Star Internet.
_____________________________________________________________________
_____________________________________________________________________
Kingfield Heath Ltd. Email Disclaimer
Confidentiality : This email and its attachments are intended for the
above-named only and may be confidential. If they have come to you in
error you must take no action based on them, nor must you copy or
show them to anyone; please reply to this email and highlight the
error.
Security Warning : Please note that this email has been created in
the knowledge that the internet is not a 100% secure communications
medium. We advise that you understand and observe this lack of
security when emailing us.
Viruses : Although we have taken steps to ensure that this email and
attachments are free from any virus, we advise that, in keeping with
good computing practice, the recipient should ensure they are
actually virus free.
_____________________________________________________________________
|
|
 |