demoshop

demo, trying to be the best_

有時候我們並不希望使用者在TextBox輸入後按下Enter就按下預設按鈕的,那我們就可以利用此方式攔截鍵盤指令。

其實這技巧很簡單,只要在Page_Load事件內加上以下code就可以了

this.TextBox1.Attributes.Add("onkeypress", "if( event.keyCode == 13 ) { return false; }"); 

當然TextBox1是你的元件名,請自行改掉,後面的東西就可以不用改了,如果您使用VB的話就參照以下code吧

TextBox1.Attributes.Add("onkeypress", "if( event.keyCode == 13 ) { return false; }") 

回應討論