posted on January 02, 2020 07:31
Get a list of states using the DNN Lists
public void GetDropDownListStates()
{
try
{
// Get State Dropdown from DNN Lists
var regions = new ListController().GetListEntryInfoItems("Region", "Country.US", this.PortalId);
ddlStatesRecipient.DataTextField = "Value";
ddlStatesRecipient.DataValueField = "Value";
ddlStatesRecipient.DataSource = regions;
ddlStatesRecipient.DataBind();
ddlStatesRecipient.Items.Insert(0, new ListItem("-Select-", "-1"));
ddlStatesRecipient.SelectedValue = "MA";
}
catch (Exception ex)
{
Exceptions.ProcessModuleLoadException(this, ex);
}
}