/// <summary>
        /// Date Created:  23/Apr/2014
        /// Created By:    Muhallidin G Wali
        /// (description)  cancel hotel booking and insert into a table (TblHotelTransactionOtherCancel)
        /// ==========================================================
        /// Date Modified:  24/Apr/2014
        /// Modified By:    Josephine Gad
        /// (description)   Add ClosePage to close this page and refresh the parent page
        ///                 Change Session["UserName"].ToString() to uoHiddenFieldUser.Value
        ///                 Add parameter fot Audit Trail
        /// ==========================================================
        /// </summary>
        protected void btnSaveCancelHotel_Click(object sender, EventArgs e)
        {
            try
            {
                ManifestBLL bll = new ManifestBLL();
                string      strLogDescription = "Cancel Hotel in Primary Vendor";
                DateTime    dateNow           = CommonFunctions.GetCurrentDateTime();

                bll.CancelHotelBooking(uoHiddenFieldTravelReq.Value, uoHiddenFieldUser.Value,
                                       txtEmailTo.Text.ToString(), txtEmailCC.Text.ToString(), uoTextBoxConfirmedBy.Text.ToString(),
                                       uoTextBoxComment.Text.ToString(), DateTime.Now, true, uoHiddenFieldRole.Value,
                                       strLogDescription, "btnSaveCancelHotel_Click",
                                       Path.GetFileName(Request.UrlReferrer.AbsolutePath), CommonFunctions.GetDateTimeGMT(dateNow));

                ClosePage();
            }
            catch (Exception ex)
            {
                AlertMessage(ex.Message.ToString());
            }
        }