Example #1
0
        void bindGridViewDesa()
        {
            var desaList = DesaControl.getDesaList();

            GridViewDesa.DataSource = desaList;
            GridViewDesa.DataBind();
        }
Example #2
0
        void BindDropdownListDesa()
        {
            var list = DesaControl.getDesaList();

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