程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> asp.net-asp textbox 是有焦點,點擊button按鈕提交, textbox 卻不不執行失去焦點事件

asp.net-asp textbox 是有焦點,點擊button按鈕提交, textbox 卻不不執行失去焦點事件

編輯:編程綜合問答
asp textbox 是有焦點,點擊button按鈕提交, textbox 卻不不執行失去焦點事件

圖片說明
正確流程是:當所在單位的文本框失去焦點時會查到該單位的id然後後台獲取這個id,
但現在有這樣一種情況,文本框還沒有失去焦點,直接去點擊注冊,這樣會導致id獲取不到,在後台進行數據轉換時就會出錯了

最佳回答:


在父窗口中訂閱 Form.MdiChildActivate Event。

Occurs when a multiple-document interface (MDI) child form is activated or closed within an MDI application.

You can use this event to perform tasks such as updating the contents of the MDI child form and changing the menu options available in the MDI parent form based on the status of the MDI child form that is activated.

以上來自msdn:
http://msdn.microsoft.com/en-us/library/system.windows.forms.form.mdichildactivate.aspx

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved