I am binding the dropdown with db entity.
ddlCustomer.DataSource = Customer.GetAll();
ddlCustomer.DataTextField = "CustomerName";
ddlCustomer.DataBind();
I want to add "SELECT" as the first itemlist in dropdown and bind then entity to the dropdown. How can i do this?