Microsoft KB Archive/901104

From BetaArchive Wiki

Article ID: 901104

Article Last Modified on 11/15/2007



APPLIES TO

  • Microsoft Internet Explorer 6.0, when used with:
    • Microsoft Windows Server 2003, Standard Edition (32-bit x86)
    • Microsoft Windows Server 2003, Web Edition
    • Microsoft Windows Server 2003, Enterprise Edition (32-bit x86)
    • Microsoft Windows Server 2003, Datacenter Edition (32-bit x86)
    • Microsoft Windows Server 2003, Enterprise x64 Edition
    • Microsoft Windows Server 2003, Datacenter x64 Edition
    • Microsoft Windows Server 2003, Standard x64 Edition
    • Microsoft Windows XP Service Pack 2




SYMPTOMS

In Microsoft Internet Explorer 6, when you compare a not a number (NaN) value to an integer value in Microsoft Visual Basic Scripting Edition (VBScript), you receive incorrect results depending on the operating system that the computer is running. You receive the following results.

Operating system Result
Microsoft Windows 2000 with any service pack installed or

Microsoft Windows XP with Service Pack 1 (SP1)

false
Microsoft Windows Server 2003 or

Microsoft Windows XP with Service Pack 2 (SP2)

true


RESOLUTION

Hotfix information

Windows XP

A supported hotfix is now available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next Windows XP Service Pack that contains this hotfix.

To resolve this problem, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:

Note If additional issues occur or any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:

Prerequisites

To apply this hotfix, you must have Windows XP Service Pack 2 (SP2) installed.

Restart requirement

You do not have to restart the computer after you apply this hotfix.

Hotfix replacement information

This hotfix does not replace any other hotfixes.

File information

The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time tool in Control Panel.

File name File version File size Date Time Platform
Vbscript.dll 5.6.0.8828 417,792 30-Jun-2005 02:52 x86
Arpidfix.exe 5.1.2600.2710 30,720 29-Jun-2005 23:57 x86
Updspapi.dll 6.1.22.4 371,936 25-Feb-2005 03:35 x86

Windows Server 2003

A supported hotfix is now available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next Windows Server 2003 Service Pack that contains this hotfix.

To resolve this problem, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:

Note If additional issues occur or any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:

Prerequisites

To apply this hotfix, you must have one of the following installed on the computer:

  • Windows Server 2003 Service Pack 1 (SP1)
  • Windows Server 2003 Service Pack 2 (SP2)

Restart Requirement

You do not have to restart your computer after you apply this hotfix.

Hotfix Replacement Information

This hotfix does not replace any other hotfixes.

File Information

The English version of this hotfix has the file attributes (or later) that are listed in the following table. The dates and times for these files are listed in coordinated universal time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time tool in Control Panel.

Windows Server 2003, Itanium-based versions
File name File version File size Date Time Platform SP requirement Service branch
Vbscript.dll 5.6.0.8823 1,110,528 07-Jul-2005 09:19 IA-64 None RTMQFE
Wvbscript.dll 5.6.0.8823 413,696 07-Jul-2005 09:19 x86 None WOW
Vbscript.dll 5.6.0.8828 1,118,208 07-Jul-2005 09:19 IA-64 SP1 SP1QFE
Wvbscript.dll 5.6.0.8828 401,408 07-Jul-2005 09:19 x86 SP1 WOW
Arpidfix.exe 5.2.3790.2482 74,752 07-Jul-2005 09:19 IA-64 None Not Applicable
Updspapi.dll 6.1.22.4 639,712 07-Jul-2005 09:19 IA-64 None Not Applicable


Windows Server 2003, x86-based versions
File name File version File size Date Time Platform SP requirement Service branch
Vbscript.dll 5.6.0.8823 413,696 07-Jul-2005 18:29 x86 None RTMQFE
Vbscript.dll 5.6.0.8828 401,408 07-Jul-2005 21:37 x86 SP1 SP1QFE
Arpidfix.exe 5.2.3790.2482 32,256 07-Jul-2005 00:48 x86 None Not Applicable
Updspapi.dll 6.1.22.4 371,936 25-Feb-2005 03:51 x86 None Not Applicable


Windows Server 2003, x64-based versions
File name File version File size Date Time Platform SP requirement Service branch
Vbscript.dll 5.6.0.8828 662,016 07-Jul-2005 09:19 x64 SP1 SP1QFE
Wvbscript.dll 5.6.0.8828 401,408 07-Jul-2005 09:19 x86 SP1 WOW
Arpidfix.exe 5.2.3790.2482 43,008 07-Jul-2005 09:19 x64 None Not Applicable
Updspapi.dll 6.1.22.4 462,560 07-Jul-2005 09:19 x64 None Not Applicable


WORKAROUND

To work around this problem, use the IsNumeric function or the IsNaN function before you perform any comparisons.

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

MORE INFORMATION

For more information, click the following article number to view the article in the Microsoft Knowledge Base:

824684 Description of the standard terminology that is used to describe Microsoft software updates


Steps to reproduce the problem

  1. Create a new file by using Notepad, and then save the file as test.asp in the local Web folder.
  2. Paste the following code into the test.htm file.

    <HTML>
    <BODY onload="Test()">
    
    <SCRIPT LANGUAGE=vbscript>
    sub Test()
    dim num
    num = parseInt("A")
    alert (num = 2)
    end sub 
    </SCRIPT>
    
    </BODY>
    </HTML>
  3. Open the test.htm file by using Internet Explorer 6.

    Note The expected result is false. Instead, you receive the results that are mentioned in the "Symptoms" section.


Keywords: kbtshoot kbfix kbbug kbqfe kbhotfixserver KB901104