Operating Systems for the Pocket PC

  • Thread starter Thread starter William LaMartin
  • Start date Start date
W

William LaMartin

This is slightly off topic since it doesn't apply to programming the Pocket
PC, but it does involve the Pocket PC.

I have created several pages at a web site that I would like to restrict to
use by Pocket PC users only. The best way I can see to do this is to check
the operating system of each visitor to such a web page (the are pages
created with Visual Studio .Net) with the code
Request.Browser.Platform.ToString. In the case of my own Pocket PC, this
returns WinCE.

My question: Is this the only possible operating system return of a Pocket
PC or are there others I should consider.
 
WinCE is a safe bet, since PocketPC's all run the Windows CE operating
system. If you want to distinguish between versions, PocketPC and
PocketPC2002 run Windows CE 3.0, PocketPC 2003 and PocketPC 2003 SE run
Windows CE.NET 4.2.
 
Back
Top