mozilla frefox enter button problem in asp.net.

2 Responses to “mozilla frefox enter button problem in asp.net.”

  1. Asasa Says:

    Hy. I have the same problem with an AnimationExtender Ajax Control and only in ie. The panel is loaded each time I press enter Do you have any ideea for in thi case? Thanks :)

  2. nizB Says:

    If the contents are inside an ajax update panel, the ‘button.click()’ might not work sometimes in mozilla. For that, u can call a javascript function in the onkeydown event of textbox and give focus to the appropriate button…

    function CheckEnter_Onclick(e)
    {
    var key;
    key=(e.which) ? e.which : e.keyCode;
    if(key==13)
    {
    document.getElementById(”).focus();
    }
    return true;
    }

Leave a Reply