protected void Approve_Click(object sender, EventArgs e)
    {
        ClubBAIST           cb = new ClubBAIST();
        StandingReservation sr = cb.ReadStandingReservation(int.Parse(Request.QueryString["sr"]));
        bool b = cb.UpdateStandingReservationApproval(sr.StandingReservationID, 1, 1);

        if (!b)
        {
        }
    }