2
在我的應用程序中,我有一個圖像按鈕和一個窗體中的兩個文本框。我想使這個圖像按鈕默認按鈕沒有任何規定做這樣的..作爲默認按鈕的圖像按鈕
在我的應用程序中,我有一個圖像按鈕和一個窗體中的兩個文本框。我想使這個圖像按鈕默認按鈕沒有任何規定做這樣的..作爲默認按鈕的圖像按鈕
你可以做,使用Panel
<asp:Panel id="pnl" runat="server" DefaultButton="imagebutton1">
// Some controls and code //
<asp:ImageButton id="imagebutton1" runat="server" ImageUrl="images/imge.gif" >
</asp:ImageButton>
// Some controls and code //
</asp:Panel>
試試這個形式標籤:
<form id="form1" runat="server" defaultfocus="imagebutton1">
@ Harsh:謝謝你的回覆是有必要將所有其他控件放在網頁的同一個面板中..因爲我只是在面板中插入了圖像按鈕,並且當我按下回車鍵時它不能正常工作 – 2011-02-10 04:04:18