Forum Moderators: open
mail.Body += "Types of Material: " + lbTypeofMaterial.SelectedItem + "<br />";
string lbTypeofMaterialALL;
foreach (string selectedItem in lbTypeofMaterial.SelectedItems)
{
lbTypeofMaterialALL += selectedItem + ", ";
}
mail.Body += "Types of Material: " + lbTypeofMaterialALL + "<br />"; CS1061: 'System.Web.UI.WebControls.ListBox' does not contain a definition for 'SelectedItems' and no extension method 'SelectedItems' accepting a first argument of type 'System.Web.UI.WebControls.ListBox' could be found (are you missing a using directive or an assembly reference?)