Partial Class adminHome Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Not IsPostBack Then DropDownList1.DataBind() DropDownList1.Items.Insert(0, New ListItem(" -- Select -- ", "0")) End If End Sub Protected Sub item_updated(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewUpdatedEventArgs) DropDownList1.DataBind() DropDownList1.Items.Insert(0, New ListItem(" -- Select -- ", "0")) End Sub Protected Sub item_inserted(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewInsertedEventArgs) DropDownList1.DataBind() DropDownList1.Items.Insert(0, New ListItem(" -- Select -- ", "0")) End Sub Protected Sub item_deleted(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewDeletedEventArgs) DropDownList1.DataBind() DropDownList1.Items.Insert(0, New ListItem(" -- Select -- ", "0")) End Sub End Class