Data is showing in combobox, but not able to type text in combobox.
When i will type text in combobox, it will focus on same combobox item from list. Here i am not able to write text, i don't know why.
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"></asp:ToolkitScriptManager>
<asp:ComboBox ID="ComboBox1" runat="server" DropDownStyle="DropDown" ></asp:ComboBox>
ds=sql.getds("select top 20 candidateid,name from candidates");
ComboBox1.DataTextField = "name";
ComboBox1.DataValueField = "candidateid";
ComboBox1.DataSource = ds.Tables[0];
ComboBox1.DataBind();