我正在使用ajaxtoolkit组合框来选择列表项。每次我选择一个项目时,页面都会刷新。我已将autoposback设置为true。我怎么能阻止这个。下面是我的html:
<ajaxToolkit:ComboBox ID="cmbDesignation" runat="server"
DropDownStyle="Simple"
AutoCompleteMode="None"
CaseSensitive="false"
RenderMode="Inline"
ItemInsertLocation="Append" AutoPostBack="True" Height="19px" Width="400px">
<asp:ListItem Value="0" Selected="True">--SelectItem--</asp:ListItem>
<asp:ListItem>Item1</asp:ListItem>
<asp:ListItem>Item2</asp:ListItem>
</ajaxToolkit:ComboBox>