Hi, all I have three list box. I want to populate one list box when i change the value of another list box through ajax i.e without submitting the whole page. Pls help me out
Welcome to DP. Here are the guidelines for your solution: <asp:ScriptManager ID="ScriptManager1" runat="server"/> <<asp:UpdatePanel ID="sumit_banderwalUpdatePanel" runat="server" UpdateMode="Conditional"> <Triggers> <asp:AsyncPostBackTrigger ControlID="ListBox1" EventName="xxxx" /> </Triggers> <ContentTemplate> <asp:ListBox1 ...... /> <asp:ListBox2 ...... /> <asp:ListBox3 ...... /> </ContentTemplate> </asp:UpdatePanel> code behind, Page_Load { ..... if (IsInAsyncPostBack) { Read ListBox1, Set ListBox2+3 accordingly } .... sumit_banderwalUpdatePanel.Update() } (find the name of the change event, i was lazy)