PRB: HTML Controls Are Visible in Internet Explorer But Not in Netscape Navigator (239802)



The information in this article applies to:

  • Microsoft Internet Explorer 5.0 for Windows NT 4.0

This article was previously published under Q239802

SYMPTOMS

When viewing a page containing HTML Form controls in Netscape Navigator, the controls are not visible. However, they appear when viewing the same page in Internet Explorer.

CAUSE

Netscape Navigator requires that HTML Form elements be used within the FORM container element.

RESOLUTION

Enclose the controls in <FORM> and </FORM> tags as in the following example:
<FORM>
  <INPUT type="text" id=text1 name=text1>
  <INPUT type="radio" id=radio1 name=radio1>
  <SELECT id=select1 name=select1>
    <OPTION>First Option</OPTION>
  </SELECT>
</FORM>
				

STATUS

This behavior is by design.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create an HTML page and add the following line in the BODY of the page:
      <INPUT type="text" id=text1 name=text1>
    						
  2. Save the page and view it in Netscape Navigator. The text box does not appear.
  3. View the page in Internet Explorer. The text box appears.
  4. Change the HTML code to look like this:
    <FORM>
         <INPUT type="text" id=text1 name=text1>
    </FORM>
    						
  5. Save the page and view it in Netscape Navigator. The text box now appears.

The third-party products that are discussed in this article are manufactured by companies that are independent of Microsoft. Microsoft makes no warranty, implied or otherwise, regarding the performance or reliability of these products.

Modification Type:MajorLast Reviewed:10/1/2002
Keywords:kb3rdparty kbDSupport kbprb KB239802