protected void Page_Load(object sender, EventArgs e)
        {
            string   isbn    = Request.QueryString["ISBN"];
            Bookshop context = new Bookshop();

            int bookid = BusinessLogic.GetBookID(isbn);

            if (isbn != null)
            {
                string img = context.Book.Single(x => x.BookID == bookid).Image;
                string n   = string.Format("~/images/" + img);
                Image1.ImageUrl = n;

                Book cn = BusinessLogic.GetBook(isbn);

                decimal NormalPrice     = BusinessLogic.GetPrice(bookid);
                decimal DiscountedPrice = BusinessLogic.GetDiscountedPrice(bookid);

                Title_lbl.Text       = cn.Title;
                Author_lbl.Text      = cn.Author;
                Category_lbl.Text    = BusinessLogic.GetCategoryName(isbn);
                NormalPrice_lbl.Text = NormalPrice.ToString("c2");
                if (NormalPrice == DiscountedPrice)
                {
                    NormalPrice_lbl.Font.Strikeout = false;
                    Discounted_lbl.Visible         = false;
                }
                else
                {
                    NormalPrice_lbl.Font.Strikeout = true;
                    Discounted_lbl.Text            = BusinessLogic.GetDiscountedPrice(bookid).ToString("c2");
                    Discounted_lbl.Visible         = true;
                }

                Warning_lbl.Visible = false;
            }
        }