public ViewResult IntegrationOboutCheckBoxes(string ComboBox1,
string ComboBox1_SelectedText)
{
ViewData["ComboBox1"] = GetStaticCountries();
if (!string.IsNullOrEmpty(ComboBox1_SelectedText))
{
ViewData["OrderDetails"] = "<br /> <br /> <b> The following controls
have been ordered:</b> " + ComboBox1_SelectedText.Replace(",", ", ");
}
return View();
}