protected void Page_Load(object sender, EventArgs e)
        {
            int movieId = Convert.ToInt32(Request.QueryString["movieId"]);

            GridView1.DataSource = promotionController.moviePromotions(movieId);
            GridView1.DataBind();


            MovieNameLabel.Text = "Promotions for " + promotionController.movieName(movieId);
        }