Oracle发布ODAC 11.2.0.1.2,支持.NET 4 和 Visual Studio 2010

2010年9月2日

Javascript/JS获取屏幕分辨率及工作区高度和宽度的方法

2010年8月31日

下面是一段测试的代码,实际的执行结果,请自行测试吧

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>JSSize</title>
</head>
<body>
<script type="text/javascript">
    document.write("document.documentElement.clientHeight:" + document.documentElement.clientHeight + "<br/>");
    document.write("document.documentElement.clientWidth:" + document.documentElement.clientWidth + "<br/>");

    document.write("window.screen.height:" + window.screen.height + "<br/>");
    document.write("window.screen.width:" + window.screen.width + "<br/>");

    document.write("window.screen.availHeight:" + window.screen.availHeight + "<br/>");
    document.write("window.screen.availWidth:" + window.screen.availWidth + "<br/>");
</script>
</body>
</html>
[ more 阅读全文 ]

Chrome, Javascript, firefox, ie, 浏览器 , , ,

Vista / XP "System Event Notification Service" 无法启动的故障解决

2010年8月30日

[ more 阅读全文 ]

Windows 7, 微软, 系统维护 , , , ,

Asp使用ServerXmlHttp检测网络资源是否可用

2010年8月30日

我名下的子站 — 问答聚合,beta版上线了

2010年8月29日

SendKeys发送空格、Ctrl、Alt等特殊键

2010年8月26日