リスト項目を動的に追加するドロップダウンがあります。autopostback を true に設定しましたが、ドロップダウンでアイテムを選択しても何も起こらないようです。
マークアップ
`<asp:DropDownList runat="server" AutoPostBack="true" ID="restaurant_city_con" CssClass="selectboxindex"></asp:DropDownList>`
コードビハインド
`if (!this.IsPostBack)
{
addStates();
showData();
dashboardPageFunction();
ordersPageFunction();
reportsPageFunction();
categoriesPageFunction();
menuPageFunction();
offersPageFunction();
bookingPageFunction();
}
else
{
addCities();
addZipCode();
}`
私が間違っていることはありますか?