What is the effect of IsPostBack Condition?
问题 I have a aspx Page where I am using AJAX. like <asp:UpdatePanel runat="server" ID="upPanelDDLProgram"> <ContentTemplate> <asp:DropDownList ID="DDLProgram" runat="server" Width="194px" Height="18px" OnSelectedIndexChanged="OnDDLProgramChanged" AutoPostBack="true"> </asp:DropDownList> </ContentTemplate> </asp:UpdatePanel> and my code behind is like protected void Page_Load(object sender, EventArgs e) { //if (!IsPostBack) //{ // BindProgramDDL(); //} BindProgramDDL(); } protected void