Winfrom和Webfrom的获取电脑分辨率的2中方法

来源:互联网 发布:知柏地黄丸吃多久见效 编辑:程序博客网 时间:2024/05/01 13:41

Winfrom的获取方法。

System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width;
System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height;


Webfrom的获取方法

1、进入首页的时候加脚本把屏宽存到cookie 中。
var str = "pix" + "=" + escape(screen.width+"*"+screen.height);
   document.cookie = str;
2、C#后台调用
    string[] pix = Page.Request.Cookies["pix"].Value.Split('*');
    //pix[0]:宽
    //pix[1]:高