asked on
protected void Page_Load(object sender, EventArgs e)
{
Dictionary<string, bool> listBoxes = new Dictionary<string, bool>();
listBoxes.Add("First_Name",true);
listBoxes.Add("LastName", false);
listBoxes.Add("City", true);
if (!IsPostBack==false)
{
}
else
{
LoadListBoxes(Dictionary<string, bool> listBoxes);
}
}
private void LoadListBoxes(Dictionary<string, bool> listBoxes)
{
}
{