1
Answer

binding combo box text to text box

mani

mani

11y
919
1
 <asp:ComboBox ID="cmbBatchno"  OnSelectedIndexChanged="cmbBatchno_SelectedIndexChanged"
                                                                                    ItemInsertLocation="Prepend"  runat="server" AutoPostBack="True" DropDownStyle="Simple"
                                                                                    AutoCompleteMode="Append">
                                                                                </asp:ComboBox>
                                                                                <asp:TextBox ID="txtbatchno" runat="server" Text='<%#Bind("cmbBatchno") %>'   OnTextChanged="cmbBatchno_TextChanged" Visible="true"></asp:TextBox>
Answers (1)
Next Recommended Forum