コード例 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                Lista = new List <Role>();
                RoleNegocio RolNegocio = new RoleNegocio();

                Lista = RolNegocio.Listar();

                ddRole.DataSource = Lista;
                ddRole.DataBind();
            }
        }