EditarUsuarios.CargarRolesdelSistema C# (CSharp) Method

CargarRolesdelSistema() protected method

protected CargarRolesdelSistema ( ) : void
return void
    protected void CargarRolesdelSistema()
    {
        try
        {
            lb_sourcerols.Items.Clear();
            lb_sourcerols.DataSource = USER.RetrieveRol();
            lb_sourcerols.DataBind();
        }
        catch (Exception er)
        {
            Session["Error_Msg"] = er.Message;
            Response.Redirect("~/Error.aspx", true);
        }
    }