Netscape Problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Stephen

    #1

    Netscape Problem

    Hi,
    I have a problem with Netscape. I am using javascript to pass values and
    redirecting to the same place. it works fine in IE and not in netscape.
    please suggest.

    function popup(WardrobeS et)

    {

    document.forms( 0).action = "WardrobeSet.as px?WardrobeSet= " + WardrobeSet;

    document.forms( 0).submit();

    }





    Please Advice,
    Stephen.


  • Lance Wynn

    #2
    Re: Netscape Problem

    I believe you use [ ] for Netscape when accessing arrays, It will work both
    ways in IE:
    (I haven't tested yet)
    document.forms[0].action="Wardro beSet.aspx?Ward robeSet=" + WardrobeSet;
    document.forms[0].submit();




    "Stephen" <stephenjobs@ho tmail.com> wrote in message
    news:umkPHAYhEH A.3864@TK2MSFTN GP10.phx.gbl...
    Hi,
    I have a problem with Netscape. I am using javascript to pass values and
    redirecting to the same place. it works fine in IE and not in netscape.
    please suggest.

    function popup(WardrobeS et)

    {

    document.forms( 0).action = "WardrobeSet.as px?WardrobeSet= " + WardrobeSet;

    document.forms( 0).submit();

    }





    Please Advice,
    Stephen.



    Comment

    Working...