Exemplo n.º 1
0
        void bindGridViewDesa()
        {
            var desaList = DesaControl.getDesaList();

            GridViewDesa.DataSource = desaList;
            GridViewDesa.DataBind();
        }
Exemplo n.º 2
0
        void BindDropdownListDesa()
        {
            var list = DesaControl.getDesaList();

            DropDownListDesa.DataSource     = list;
            DropDownListDesa.DataTextField  = "NamaDesa";
            DropDownListDesa.DataValueField = "DesaID";
            DropDownListDesa.DataBind();
        }