你好,我有一個updatepanel
設置。我已將其更新模式設置爲有條件,以便只在發生觸發事件時觸發。在updatepanel
的內部,我已經將觸發器設置爲一些圖像控件,並將事件名稱單擊。一切都很好,直到現在。Asp.net中的UpdatePanel回傳輸入鍵按
但現在我也有一個textbox
設置。當我輸入一些其他文本並按回車時,它會導致回發並且更新面板接受控制。即使我已將textbox
的autoPostBack
屬性設置爲false,並且updatePanel
UpdateMode
爲有條件。請有人指出這個問題。我究竟做錯了什麼?我只希望updatepanel
在發生此觸發事件時負責updatePanel
這是我的代碼updatepanel
和textBox
。 。
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" >
<Triggers>
<asp:AsyncPostBackTrigger ControlID="ImageButtonLeftArrow" EventName="click" />
<asp:AsyncPostBackTrigger ControlID="ImageButtonRightArrow" EventName="click" />
</Triggers>
<ContentTemplate>
<asp:AdRotator ID="AdRotator1" runat="server"
AdvertisementFile="~/MainImages.xml" Height="650" Width="934"
onadcreated="AdRotator1_AdCreated" CssClass="borderClassForAdRotator" />
<asp:UpdateProgress ID="UpdateProgress1" runat="server" >
<ProgressTemplate>
<div >
<img src="images/loading.gif" class="overLayImage" />
</div>
</ProgressTemplate>
</asp:UpdateProgress>
</ContentTemplate>
</asp:UpdatePanel>
<asp:TextBox ID="search" CssClass="search" runat="server" AutoPostBack="false" ></asp:TextBox>
請問您可以發佈完整的html嗎? – Waqas