protected void btnInsert_Click(object sender, EventArgs e)
 {
     if (Page.IsValid)
     {
         GoogleDoc newDoc = new GoogleDoc();
         newDoc.Season = ddlSeasons.SelectedItem.Value;
         newDoc.Set    = tbCardSet.Text;
         newDoc.Url    = tbGoogleDocUrl.Text;
         bool success = newDoc.InsertIntoDB();
         if (success)
         {
             BindData();
         }
         else
         {
             lbInsertError.Visible = true;
         }
     }
 }