protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { grvUsers.DataSource = userBLL.GetAllUsers(); grvUsers.DataBind(); } }
public IActionResult Index() { try { PartialView("UserGrid", ControllerHelper.FillUserGridModel(UsersBLL.GetAllUsers())); return(View("ManageUser")); } catch (Exception) { throw; } }
void BindGrid() { grdUsers.DataSource = userBLL.GetAllUsers(); grdUsers.DataBind(); }