Hi experts,
i have a dropdown(ddloptions) and i am binding the dropdown after that i am adding 00 as first option.the problem is when page is loaded 00 option is selected.my requirement is first item is not selected when the page is loaded
the code is like this
DataSet ds = new DataSet();
ds = objBus.getdropdownvalues();
ddloptions.DataSource = ds.Tables["Data"];
ddloptions.DataTextField = "PBL_BRANCH_CD";
ddloptions.DataValueField = "PBL_BRANCH_CD";
ddloptions.DataBind();
ddloptions.Items.Insert(0, "00");
Thanks in advance
Krish