コード例 #1
0
        public static string GetDropDownCidades()
        {
            string cSelect = "<select class='cidade'>";

            try
            {
                Cidade[] cidade = CidadeDAO.FindAll();

                foreach (Cidade tipoAc in cidade)
                {
                    cSelect += "<option value=\"" + tipoAc.Id + "\">" + tipoAc.Nome + "</option>";
                }
            }
            catch (Exception e)
            {
                MetodosGlobais.SaveExceptionError(e, "Home/GetDropDownRegiao");
            }
            cSelect += "</select>";

            return(cSelect);
        }