DropDownList only selects the first value
问题 I have a problem with my DropDownList. after reading alot of post here i still cant make it work so ill ask. this is my C# code: protected void Page_Load(object sender, EventArgs e) { using (SqlConnection connection = new SqlConnection("Data Source=PCM13812;Initial Catalog=Newsletter;Integrated Security=True")) { connection.Open(); SqlCommand cmd = new SqlCommand(); cmd = new SqlCommand("Select Email From Newsletter", connection); EmailList.DataSource = cmd.ExecuteReader(); EmailList