I have this code in my CodeBehindPage in the Page_Load event to populate my DropDownList, but it populates the DropDown twice. I debugged and it does indeed go through the code twice. Anyone come across this issue? Any solutions?
If Not Me.IsPostBack() Then
Me.DropDownList1.Items.Add(New ListItem("WEBDDEVL1"))
Me.DropDownList1.Items.Add(New ListItem("WEBDDEVL2"))
Me.DropDownList1.Items.Add(New ListItem("WEBDDEVL3"))
End If
