User manual - Web_Browser_Prog_Guide

NAURTECH WEB BROWSER SMART CLIENTS FOR WINDOWS CE .NET / POCKET PC
Web Browser Programming Guide Page 23
Comments
This tag should be the first special META tag defined on the page, but not before
any JavaScript methods that may be invoked by the content. If this tag is not
specified, errors are reported via popup messages.
Example
<html>
<head>
<script language=javascript>
function MyErrorHandler(errno, msg)
{
alert( "Error Number=" + errno + "\nMessage=" + msg );
}
</script>
<meta http-equiv="ErrorNavigate"
content="javascript:MyErrorHandler(%s, %s);">
</head>
<body>
...
</body>
</html>
3.7 GETUNITINFORMATION
The GetUnitInformation tag reports device and client information to the host or
user.
Syntax
http-equiv="GetUnitInformation"
content="javascript:ReportInfo(%s, %s, %s);"
<!- or ->
content="http://10.1.1.8/uinfo.htm?serial=%s&uuid=%s&version=%s"
The first “%s” is replaced by the device serial number, the second %s by the
Windows CE device UUID, and third “%s” by the Web Browser version.
Comments
This tag is supported for compatibility with other browsers. It is preferable to use
the “CETerm.GetProperty” method of the CEBrowseX control or the “external”
object (under CE .NET or 5.0 only).
Example
<html>
<head>
<meta http-equiv="GetUnitInformation"
content="javascript:ReportInfo(%s, %s, %s);">