Hello to all. i have an ajax tool that is DropDownExtender , panel and a text box..
<asp:Panel runat="server" ID="panel1">
<asp:ListBox ID="lstTitles" runat="server"
Height="100"
Width="100"
>
<asp:ListItem Text="One" Value="One" />
<asp:ListItem Text="Two" Value="Two" />
<asp:ListItem Text="Three" Value="Three" />
<asp:ListItem Text="Four" Value="Four" />
<asp:ListItem Text="Five" Value="Five" />
</asp:ListBox>
</asp:Panel>
<asp:TextBox ID="txtTitle" runat="server" />
<cc1:DropDownExtender ID="DropDownExtender1" TargetControlID="txtTitle" DropDownControlID="panel1" runat="server">
</cc1:DropDownExtender>
Its working fine but I wants that the item which i will select shoul come in the text box...how it will happen ..