I need to get the screen resolution of your visitors on the site. Is it possible to do this in ASP.NET? I get the screen resolution using the code:
var mn = System.Windows.Forms.Screen.PrimaryScreen.Bounds;
int h = mn.Height;
int w = mn.Width;
But this resolution on the server. I need a resolution of client monitor.