Im stuck in my project here and i really need some help!I have 2 dropdownlists "DropDownPostal" and "DropDownCity". When the user/employee logges into the system, he gets the list of Postals in the first dropdown list. Lets say he choose a postal and tabs over to the second dropdown "city". I want city to be updated with the postal the user choose earlier. I have everything working with the login and retrieving data from the database to the DropDownPostal. But I cannot get the other DropDownCity updated with any data!Here is my code for the event i made for the postaldropdown, Im trying to make a "onLeave" event.\[code\]protected void DropDownListPostal_SelectedIndexChanged1(object sender, EventArgs e){ DbEntities dwe = new DbEntities(); if (!IsPostBack) { DropDownListPostal.DataSource = from info in dwe.VW_CustumAddress select info; } foreach (var data in dwe.VW_CustumAddress) { if (data.Postal == DropDownListPostal.SelectedItem.ToString()) { DropDownListBy.Text = data.City; } else { } }}\[/code\]Im not even sure if this code is close to correct.Detailed help with code will be much appreciated.Cheers 
