Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The new version of the Browser Capabilities component that comes with ASP 3.0 in Windows 2000 has a neat feature that allows us to collect information about each specific user's browser, rather than just relying on the values that are generic to each browser. Obviously, the browscap.ini file that the Browser Capabilities component uses to identify the browser from its USER-AGENT string can only contain general information that applies to that browser. In other words, [red]it can tell you if it supports frames or ActiveX controls, but it can't tell you what screen resolution (for example) the user is running in[/red].
from
<html>
<head>
</head>
<body>
<p><%=Date%></p>
<SCRIPT LANGUAGE= "JavaScript">
<!--
document.write("screen height is " + screen.height + " pixels.<br>");
document.write("screen width is " + screen.width + " pixels.<br>");
//-->
</SCRIPT>
<p><%=Time%></p>
</body>
</html>