How to detect screen resolution in (classic) ASP - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:27:39Zhttp://stackoverflow.com/feeds/question/121979http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/121979/how-to-detect-screen-resolution-in-classic-asp1How to detect screen resolution in (classic) ASPDan W2008-09-23T16:03:02Z2008-10-10T09:22:22Z
<p>Hi,</p>
<p>I want to detect users' screen size and pass this into a charting application (Chart Director by <a href="http://www.advsofteng.com" rel="nofollow">http://www.advsofteng.com</a>) to control how big an image to display.</p>
<p>I have to use ASP, but I can only think to use JavaScript to detect screen-size and then pass this into the server-side script. Is there an easier way?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/121979/how-to-detect-screen-resolution-in-classic-asp/121989#1219892Answer by Phunchak for How to detect screen resolution in (classic) ASPPhunchak2008-09-23T16:04:37Z2008-09-23T16:04:37Z<p>Here's a couple of links that should help</p>
<p><a href="http://www.javascriptkit.com/howto/newtech3.shtml" rel="nofollow">http://www.javascriptkit.com/howto/newtech3.shtml</a></p>
<p><a href="http://www.devcity.net/Articles/64/1/screenresolution.aspx" rel="nofollow">http://www.devcity.net/Articles/64/1/screenresolution.aspx</a></p>
http://stackoverflow.com/questions/121979/how-to-detect-screen-resolution-in-classic-asp/121993#1219934Answer by Kolten for How to detect screen resolution in (classic) ASPKolten2008-09-23T16:04:55Z2008-09-23T16:04:55Z<p>No, the server knows nothing about the client other than basic info like IP and browser version.
Screen resolution can easily be determined via javascript and passed to the server though, using ajax, or via form submission.</p>
http://stackoverflow.com/questions/121979/how-to-detect-screen-resolution-in-classic-asp/122135#1221350Answer by Jim for How to detect screen resolution in (classic) ASPJim2008-09-23T16:29:23Z2008-09-23T16:29:23Z<p>No, this is not possible for desktop browsers. I suggest embedding an image that's appropriate for typical screen resolutions, then detecting the canvas size, and rewriting the image's <code>src</code> attribute to reflect that.</p>
<p>In any case, you <em>don't</em> want to look at the screen resolution, you want to look at the canvas size. Not everybody uses their browser with a maximised window, especially those with large screens. If you use the screen resolution, then you'll end up serving images that are way too big for some people.</p>
http://stackoverflow.com/questions/121979/how-to-detect-screen-resolution-in-classic-asp/122293#1222930Answer by Omar Kooheji for How to detect screen resolution in (classic) ASPOmar Kooheji2008-09-23T16:58:41Z2008-09-23T16:58:41Z<p>You can't get the users screen size only the browser window size, and thats doable using javascript.</p>