Quick access to list of regions in DNN


/ Published in: C#
Save to your folder(s)

This code allows quick access to the dnn state/region listings..


Copy this code and paste it in your HTML
  1. var regions = new ListController().GetListEntryInfoItems("Region", "Country." + selCountry.SelectedValue, 0);
  2. ListController lc = new ListController();
  3. selState.DataSource = regions;
  4. selState.DataBind();

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.