Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. How to get the Clients Operating System in asp.net 1.1

How to get the Clients Operating System in asp.net 1.1

Scheduled Pinned Locked Moved ASP.NET
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    RaviJJain
    wrote on last edited by
    #1

    can any body tell me how to get the Clients running Operating System through the Request.form object i do not get the exact OS please help me...Very Quickly thanx :(

    K 1 Reply Last reply
    0
    • R RaviJJain

      can any body tell me how to get the Clients running Operating System through the Request.form object i do not get the exact OS please help me...Very Quickly thanx :(

      K Offline
      K Offline
      kubben
      wrote on last edited by
      #2

      There is an operatingSystem object that has Platform, servicepack, version and versionstring. Here is an example straight from Microsoft help:

      Visual Basic
      ' Example for the OperatingSystem constructor and the
      ' OperatingSystem.ToString( ) method.
      Imports System
      Imports Microsoft.VisualBasic

      Module OpSysConstructDemo

      ' Create and display an OperatingSystem object.
      Sub BuildOSObj( pID As PlatformID, ver As Version )
      
          Dim os As New OperatingSystem( pID, ver )
      
          Console.WriteLine( "   {0}", os.ToString( ) )
      End Sub 
          
      Sub BuildOperatingSystemObjects( )
      
          ' The Version object does not need to correspond to an 
          ' actual OS version.
          Dim verNull     As New Version( )
          Dim verMajMin   As New Version( 3, 11 )
          Dim verMMBld    As New Version( 5, 25, 625 )
          Dim verMMBVer   As New Version( 5, 6, 7, 8 )
          Dim verString   As New Version( "3.5.8.13" )
              
          ' All PlatformID members are shown here.
          BuildOSObj( PlatformID.Win32NT, verNull )
          BuildOSObj( PlatformID.Win32S, verMajMin )
          BuildOSObj( PlatformID.Win32Windows, verMMBld )
          BuildOSObj( PlatformID.WinCE, verMMBVer )
          BuildOSObj( PlatformID.Win32NT, verString )
      End Sub 
          
      Sub Main( )
          Console.WriteLine( \_
              "This example of the OperatingSystem constructor " & \_
              "and " & vbCrLf & "OperatingSystem.ToString( ) " & \_
              "generates the following output." & vbCrLf )
          Console.WriteLine( \_
              "Create and display several different " & \_
              "OperatingSystem objects:" & vbCrLf )
      
          BuildOperatingSystemObjects( )
              
          Console.WriteLine(vbCrLf & \_
              "The OS version of the host computer is: " & \_
              vbCrLf & vbCrLf & "   {0}", \_
              Environment.OSVersion.ToString( ) )
      End Sub
      

      End Module

      ' This example of the OperatingSystem constructor and
      ' OperatingSystem.ToString( ) generates the following output.
      '
      ' Create and display several different OperatingSystem objects:
      '
      ' Microsoft Windows NT 0.0
      ' Microsoft Win32S 3.11
      ' Microsoft Windows 98 5.25.625
      ' Microsoft Windows CE 5.6.7.8
      ' Microsoft Windows NT 3.5.8.13
      '
      ' The OS version of the host computer is:
      '
      ' Microsoft Windows NT 5.1.2600.0

      C#
      // Example for the OperatingSystem constructor and the
      // OperatingSystem.ToString( ) method.
      using System;

      cl

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups