How to detect screen resolution in (classic) ASP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:27:39Z http://stackoverflow.com/feeds/question/121979 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/121979/how-to-detect-screen-resolution-in-classic-asp 1 How to detect screen resolution in (classic) ASP Dan W 2008-09-23T16:03:02Z 2008-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#121989 2 Answer by Phunchak for How to detect screen resolution in (classic) ASP Phunchak 2008-09-23T16:04:37Z 2008-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#121993 4 Answer by Kolten for How to detect screen resolution in (classic) ASP Kolten 2008-09-23T16:04:55Z 2008-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#122135 0 Answer by Jim for How to detect screen resolution in (classic) ASP Jim 2008-09-23T16:29:23Z 2008-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#122293 0 Answer by Omar Kooheji for How to detect screen resolution in (classic) ASP Omar Kooheji 2008-09-23T16:58:41Z 2008-09-23T16:58:41Z <p>You can't get the users screen size only the browser window size, and thats doable using javascript.</p>