In the previous video, we completed a form that contained input fields that need some validations.
Challenge: Modify the click event to save data and add additional validation and exception handling using try....catch statements.
We also see the need to 'Refresh' our grid each time the data changes.
Challenge: Add a refresh button to the grid page and use the following logic in the click event.
private void btnRefresh_Click(object sender, EventArgs e)
{
//Simple Refresh Option
PopulateGrid();
}