Add static item to DropDownList web control after data bind in ASP.NET
Sometimes we need to add a static item to the top of DropDownList web control, such as "-- Please select --" or any other text. This static item will be removed and replaced with the items that comes from the data source you are using after calling DataBind() method. To keep the...

