protected void CopyOnClick(object sender, EventArgs e)
 {
     if (!_activeCell.IsNull() && !_activeCell.Value.IsNull())
     {
         Clipboard.SetText(_activeCell.Value.ToString());
     }
 }