In this code section I just explain how to add default selection for DropDown.
Using below code snippet we can achieve this.
ds = //data;
ddlType.DataSource = ds;
ddlType.DataTextField = "NAME";
ddlType.DataValueField = "ID";
ddlType.DataBind();
ddlType.Items.Insert(0, new ListItem("--Select--", "0"));