protected void gvCaseLaws_RowDeleting(object sender, GridViewDeleteEventArgs e)
 {
     GridView gv = sender as GridView;
     GridViewRow row = gv.Rows[e.RowIndex];
     int? id = Int32.Parse(row.Cells[2].Text);
     GET_CaseLaws_BY_CatTableAdapter index = new GET_CaseLaws_BY_CatTableAdapter();
     if (id != null & id > 0)
     {
         index.Delete_CaseLaws_BY_ID(id);
         LoadCaseLaws(gv);
     }
 }