Enter button does not submit form (IE ONLY) ASP.NET

后端 未结 9 931
夕颜
夕颜 2020-12-01 10:17

I have a form with a textbox and a button. IE is the only browser that will not submit the form when Enter is pressed (works in FF, Opera, Safari, Chrome, etc.). I found th

9条回答
  •  旧巷少年郎
    2020-12-01 10:35

    // Use the following Javascript in your HTML view
    // put it somewhere between  and 
    
        
    
        // Put this in your TextBox(es) aka inside 
        onkeydown="KeyDownHandler(ButtonID)"
    

提交回复
热议问题