May 17, 2004 #1 vatawna Programmer Feb 24, 2004 67 US Does anyone know how to find out the screen resolution programmatically from asp.net? Thanks.
May 18, 2004 #2 marinero Programmer Mar 30, 2004 33 PR using System; using System.Drawing; using System.Windows.Forms; public class GetScreenRes { public static void Main() { int xSize = SystemInformation.PrimaryMonitorSize.Width; int ySize = SystemInformation.PrimaryMonitorSize.Height; Console.WriteLine("The screen is {0} x {1}", xSize, ySize); } } Upvote 0 Downvote
using System; using System.Drawing; using System.Windows.Forms; public class GetScreenRes { public static void Main() { int xSize = SystemInformation.PrimaryMonitorSize.Width; int ySize = SystemInformation.PrimaryMonitorSize.Height; Console.WriteLine("The screen is {0} x {1}", xSize, ySize); } }