我有一个下拉列表,我在其中动态添加列表项。我将 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();
}`
有什么我做错了吗?