他們給我以獲取具有焦點,只允許我想要的形式提交表單以下僞代碼:VB.net回車鍵
<script> var currentForm = document.forms[0];</script>
<form ...><input onfocus="currentForm = this.form;"/></form>
<form ...><input onfocus="currentForm = this.form;"/></form>
function globalKeyPressed(event) {
if (event.keyCode == ENTER) { // This is pseudo-code, check how to really do it
currentForm.submit();
}
}
我將如何做到這一點的VB。因爲VB.net不接受System.Windows.Forms.KeyPressEventArgs。我還想補充一點,我的網站上不能有多個表單,因爲它破壞了登錄視圖。所以我的2個單獨的'表單'實際上只是一個loginview,然後是一個asp:textbox和asp:button本身沒有表單。
這是winforms或webforms?換句話說,你正在編寫一個桌面應用程序或一個網絡應用程序? – 2010-06-11 13:18:50
....我的網站上有多個表單... n asp:textbox和asp:button by ....我猜web – 2010-06-11 13:20:30
是的,這是一個web應用 – BioXhazard 2010-06-11 13:23:27