protected void Page_Load(object sender, EventArgs e) { //Missing Session if (Session["JSTurnedOn"] == null) { Response.Redirect("PEAUHErrorScreen.htm?missingsession=true", true); } //Other important checks - redirect to default page if (Request.QueryString["prodid"] == null) { Response.Redirect("PEAUHErrorScreen.htm?redirect=dispimage", true); } else if (Request.QueryString["prodid"].Length > 10) { Response.Redirect("PEAUHErrorScreen.htm?redirect=dispimage", true); } if (!Page.IsPostBack) { if (Request.QueryString["prodid"] != null) { GlobalUtils.Utils UtilMethodClean = new GlobalUtils.Utils(); _prodid = UtilMethodClean.Clean(Request.QueryString["prodid"].ToString()); UtilMethodClean = null; ProductCollection pColl = SQLDataAccess.GetProductbyProductIDWithRules(_prodid); //Checking for a valid Product Id if (pColl == null) { Response.Redirect("PEAUHErrorScreen.htm?redirect=dispimage", true); } else if (pColl.Pubs.Length == 0) { Response.Redirect("PEAUHErrorScreen.htm?redirect=dispimage", true); } Product p = pColl[0]; Image PubLargeImage = (Image)this.FindControl("PubLargeImage"); PubLargeImage.AlternateText = p.ShortTitle; string imagepath = ConfigurationManager.AppSettings["PubLargeImagesURL"]; PubLargeImage.ImageUrl = imagepath + "/" + p.PubLargeImage; } else { throw new ArgumentException("Missing parameter in dispimage.aspx", "value"); } } }
private void Page_Load(object sender, System.EventArgs e) { if (Utils.ValidateRedirect().Length > 0) //Important check { Response.Redirect(Utils.ValidateRedirect(), true); } //Missing Session //if (Session["JSTurnedOn"] == null) // Response.Redirect("default.aspx?missingsession=true", true); //Just for the details page--allow users to come in directly if (Session["JSTurnedOn"] == null) { Session["JSTurnedOn"] = "True"; //Assuming JavaScript is enabled, by default. if (Session["NCIPLEX_Pubs"] == null) { Session["NCIPLEX_Pubs"] = ""; } if (Session["NCIPLEX_Qtys"] == null) { Session["NCIPLEX_Qtys"] = ""; } if (Session["NCIPLEX_SearchKeyword"] == null) { Session["NCIPLEX_SearchKeyword"] = ""; } if (Session["NCIPLEX_TypeOfCancer"] == null) { Session["NCIPLEX_TypeOfCancer"] = ""; } if (Session["NCIPLEX_Subject"] == null) { Session["NCIPLEX_Subject"] = ""; } if (Session["NCIPLEX_Audience"] == null) { Session["NCIPLEX_Audience"] = ""; } if (Session["NCIPLEX_ProductFormat"] == null) { Session["NCIPLEX_ProductFormat"] = ""; } if (Session["NCIPLEX_Language"] == null) { Session["NCIPLEX_Language"] = ""; } if (Session["NCIPLEX_StartsWith"] == null) { Session["NCIPLEX_StartsWith"] = ""; } if (Session["NCIPLEX_Series"] == null) { Session["NCIPLEX_Series"] = ""; //Or collection } if (Session["NCIPLEX_NewOrUpdated"] == null) { Session["NCIPLEX_NewOrUpdated"] = ""; } if (Session["NCIPLEX_Race"] == null) { Session["NCIPLEX_Race"] = ""; } } //End of code //Some more checks -- for HailStorm if (QuantityOrdered.Text.Length > 4) { Response.Redirect("default.aspx?redirect=detail1", true); } else if (PubQtyLimit.Text.Length > 5) { Response.Redirect("default.aspx?redirect=detail2", true); } else if (QuantityOrderedCover.Text.Length > 4) { Response.Redirect("default.aspx?redirect=detail3", true); } else if (CoverQtyLimit.Text.Length > 5) { Response.Redirect("default.aspx?redirect=detail4", true); } //End of HailStorm checks //Other important checks - redirect to default page if (Request.QueryString["prodid"] == null) { Response.Redirect("default.aspx?redirect=detail", true); } else if (Request.QueryString["prodid"].Length > 10) { Response.Redirect("default.aspx?redirect=detail", true); } if (!Page.IsPostBack) { //***EAC decided to use product ID instead on PUBID to dicourage users from guessing this param if (Request.QueryString["prodid"] != null) { GlobalUtils.Utils UtilMethodClean = new GlobalUtils.Utils(); _prodid = UtilMethodClean.Clean(Request.QueryString["prodid"].ToString()); UtilMethodClean = null; ProductCollection pColl = SQLDataAccess.GetProductbyProductIDWithRules(_prodid); //Product p = Product.GetPubByProductID(Request.QueryString["prodid"].ToString()); //Checking for a valid Product Id if (pColl == null) { Response.Redirect("default.aspx?redirect=detail", true); } else if (pColl.Pubs.Length == 0) { Response.Redirect("default.aspx?redirect=detail", true); } Product p = pColl[0]; lblTitle.Text = p.LongTitle; lblFormat.Text = p.Format; if (lblFormat.Text.Length <= 0) { lblFormatText.Visible = false; } lblNumPages.Text = p.NumPages; if (lblNumPages.Text.Length <= 0) { lblNumPagesText.Visible = false; } //Image1.ImageUrl = "pubimages/" + p.PubImage; lblAud.Text = p.Audience; if (lblAud.Text.Length <= 0) { lblAudText.Visible = false; } lblLang.Text = p.Language; if (lblLang.Text.Length <= 0) { lblLangText.Visible = false; } //lblSumm.Text = p.Summary; lblDesc.Text = p.Abstract; //if (lblDesc.Text.Length <= 0) //lblDescText.Visible = false; //LSK no label for description string LastUpdatedMon = ""; string LastUpdatedDay = ""; string LastUpdatedYear = ""; string LastUpdatedText = ""; LastUpdatedMon = p.RevisedMonth; LastUpdatedDay = p.RevisedDay; LastUpdatedYear = p.RevisedYear; if (LastUpdatedMon.Length > 0 && LastUpdatedDay.Length > 0 && LastUpdatedYear.Length > 0) { LastUpdatedText = LastUpdatedMon + " " + LastUpdatedDay + ", " + LastUpdatedYear; } else if (LastUpdatedMon.Length > 0 && LastUpdatedYear.Length > 0) { LastUpdatedText = LastUpdatedMon + " " + LastUpdatedYear; } else if (LastUpdatedYear.Length > 0) { LastUpdatedText = LastUpdatedYear; } else { LastUpdatedText = ""; } lblLastupd.Text = LastUpdatedText; //lblLastupdText.Text = p.RevisedDateType; lblLastupdText.Text = p.RevisedDateType.ToLower(); if (lblLastupd.Text.Length <= 0) { lblLastupdText.Visible = false; } lblProductID.Text = p.ProductId; if (lblProductID.Text.Length <= 0) { lblProductIDText.Visible = false; } lblOrderLimit.Text = p.NumQtyLimit.ToString(); //HITT 8288 if (p.CanOrder == 0) //HITT 8288 { lblOrderLimit.Visible = false; lblOrderLimitText.Visible = false; } lblNIH.Text = p.NIHNum; if (lblNIH.Text.Length <= 0) { lblNIHText.Visible = false; } //if (lblNIHText.Visible == true) //CR-10 HITT 9456 //{ // if (p.NIHNum.Length > 7) // lblNIHText.Text = "NIH Number(s): "; //} lblAwards.Text = p.Awards; //if (lblAwards.Text.Length > 0) // lblAwards.Text = p.Awards; //lblAwardsText.Visible = false; //LSK no longer show awards label if (p.PubImage.Length > 0) { panelThumbImg.Visible = true; string imagepath = ConfigurationManager.AppSettings["PubImagesURL"]; //Image1.ImageUrl = "pubimages/" + p.PubImage; Image1.ImageUrl = imagepath + "/" + p.PubImage; Image1.AlternateText = p.ShortTitle; if (p.PubLargeImage.Length > 0) { panelThumbImg.Visible = false; panelLargeImg.Visible = true; string lgimagepath = ConfigurationManager.AppSettings["PubLargeImagesURL"]; Image2.AlternateText = p.ShortTitle; Image2.ImageUrl = lgimagepath + "/" + p.PubLargeImage; Image3.AlternateText = p.ShortTitle; Image3.ImageUrl = lgimagepath + "/" + p.PubLargeImage; MagnifierLink.Visible = true; MagnifierLink.NavigateUrl = "dispimage.aspx?prodid=" + p.ProductId; } } OrderPublication.CommandArgument = p.PubId.ToString(); OrderCover.CommandArgument = p.PubIdCover; if (p.CanView == 1) { //ReadOnlineLink.Visible = true; //ReadOnlineLink.Target = "_blank"; //ReadOnlineLink.NavigateUrl = p.Url; if (p.Url.Length > 0) { //textbreaker1.Visible = true; HtmlLink.Visible = true; HtmlLink.NavigateUrl = p.Url; } if (p.PDFUrl.Length > 0) { //textbreaker2.Visible = true; PdfLink.Visible = true; PdfLink.NavigateUrl = p.PDFUrl; } } #region SHOW EBOOK URLS IF ANY string kindle = DAL2.DAL.EbookUrl(p.PubId, "kindle"); if (kindle.Length > 0) { KindleLink.Visible = true; KindleLink.NavigateUrl = kindle; } string epub = DAL2.DAL.EbookUrl(p.PubId, "epub"); if (epub.Length > 0) { EpubLink.Visible = true; EpubLink.NavigateUrl = epub; } #endregion if (p.OrderMsg.Length > 0) { //HITT 7445 labelOrderMsg.Visible = true; labelOrderMsg.Text = p.OrderMsg; } if (p.CanOrder == 1) { OrderPublication.Visible = true; } else //HITT 10265 { HiddenPopUpButton.Visible = false; PubOrderPanel.Visible = false; } if (p.CoverMsg.Length > 0) { //HITT 7445 labelCoverMsg.Visible = true; labelCoverMsg.Text = p.CoverMsg; } /*JPJ 03-10-11 NCIPLex should not allow Nerdo pubs cover ordering.*/ //if (p.CanOrderCover == 1) //{ // OrderCover.Visible = true; //} //else //HITT 10265 //{ HiddenCoverPopUpButton.Visible = false; PubCoverOrderPanel.Visible = false; //} //Check whether this pub is already in cart if (!IsItemInCart(p.PubId.ToString())) { OrderPublication.CommandArgument = p.PubId.ToString(); //CR 28 OrderPublication.ImageUrl = "images/OrderPublicationGreen_off.gif"; OrderPublication.ImageUrl = "images/order_off.gif"; //OrderPublication.AlternateText = "Order Publication"; OrderPublication.AlternateText = "Order"; if (Utils.remainderOrderQtyForOrder(Session["NCIPLEX_Qtys"].ToString()) <= 0) //new code { OrderPublication.CommandArgument = ""; OrderPublication.ImageUrl = "images/LimitReached.gif"; OrderPublication.AlternateText = "Limit Reached"; } } else { OrderPublication.CommandArgument = ""; OrderPublication.ImageUrl = "images/PublicationInYourCart_off.gif"; OrderPublication.AlternateText = "Publication - In Your Cart"; } //Check whether this pub is already in cart if (!IsItemInCart(p.PubIdCover.ToString())) { OrderCover.CommandArgument = p.PubIdCover.ToString(); //CR 28 OrderCover.ImageUrl = "images/OrderCoverOnlyGreen_off.gif"; OrderCover.ImageUrl = "images/ordercovers_off.gif"; //CR 28 OrderCover.AlternateText = "Order Covers Only"; OrderCover.AlternateText = "Order Covers"; } else { OrderCover.CommandArgument = ""; OrderCover.ImageUrl = "images/CoverOnlyInYourCart_off.gif"; OrderCover.AlternateText = "Covers Only - In Your Cart"; } //_pubid = DAL.DAL.GetPubIdFromProductId(Request.QueryString["prodid"]); //_pubid = DAL.DAL.GetPubIdFromProductId(_prodid); _pubid = p.PubId; //Code for physical description string Dimension = ""; string Color = ""; string Other = ""; //Get the physical description of the product from the database IDataReader dr = SQLDataAccess.GetPubPhysicalDesc(_pubid); try { using (dr) { while (dr.Read()) { Dimension = dr["DIMENSION"].ToString(); Color = dr["COLOR"].ToString(); Other = dr["OTHER"].ToString(); } } } catch (Exception Ex) { //TO DO: log any error if (!dr.IsClosed) { dr.Close(); } } //Assigning to label string phydesc = ""; if (Dimension.Length > 0) { phydesc += Dimension + "; "; } if (Color.Length > 0) { phydesc += Color + "; "; } if (Other.Length > 0) { phydesc += Other + "; "; } char [] temparr = { ';', ' ' }; if (phydesc.Length > 2) { phydesc = phydesc.TrimEnd(temparr); } lblPhysicalDesc.Text = phydesc; //if (lblPhysicalDesc.Text.Length <= 0) //lblPhysicalDescText.Visible = false; //LSK label for physdesc no longer shown //End code for physical description //Get Collections that this pub belongs to try { grdViewPubCollections.DataSource = SQLDataAccess.GetPubCollections(_pubid); grdViewPubCollections.DataBind(); } catch (Exception Ex) { //Do nothing } if (grdViewPubCollections.Rows.Count > 0) { //Display singular label lblPubCollections.Text = "part of the collection: "; if (grdViewPubCollections.Rows.Count > 1) { //Display plural label lblPubCollections.Text = "part of the collections: "; } } else { lblPubCollections.Visible = false; } //End code for displaying the publication collection //Begin code for Contents & Cover URL /*JPJ 03-10-11 NCIPLex should not allow Nerdo pubs cover ordering.*/ //if (p.UrlNerdo.Length > 0 && p.UrlCover.Length > 0) //{ // NerdoContentsLink.Text = "Contents PDF"; // NerdoContentsLink.NavigateUrl = p.UrlNerdo; // NerdoCoverLink.Text = "Cover PDF"; // NerdoCoverLink.NavigateUrl = p.UrlCover; //} //else //{ //lblNerdo.Visible = false; NerdoContentsLink.Visible = false; //lblNerdoSpace.Visible = false; NerdoCoverLink.Visible = false; //} ////Begin CR-30: HITT 8719 - Pub Translations ////PlaceHolder plcTranslations = (PlaceHolder)e.Item.FindControl("plcTranslations"); //int counter = 0; //Panel linksPanel = new Panel(); //foreach (Product tranlatedproduct in DAL.DAL.GetProductTranslations(p.PubId)) //{ // HyperLink TranslationsLink = new HyperLink(); // TranslationsLink.CssClass = "linkDefault"; // TranslationsLink.Text = tranlatedproduct.Language; // TranslationsLink.NavigateUrl = "detail.aspx?prodid=" + tranlatedproduct.ProductId; // Label spaceLabel = new Label(); // //if (counter > 0 && counter % 3 == 0) // // spaceLabel.Text = "<br/>"; // //else // spaceLabel.Text = " "; // linksPanel.Controls.Add(TranslationsLink); // linksPanel.Controls.Add(spaceLabel); // TranslationsLink = null; // spaceLabel = null; // counter++; //} //if (counter > 0) //{ // //Label Translations = new Label(); // //Translations.CssClass = "textDefault"; // //Translations.Text = "Translations: "; // //linksPanel.Controls.AddAt(0, Translations); // //Translations = null; // plcTranslations.Controls.Add(linksPanel); //} //else // lblTranslations.Visible = false; //linksPanel = null; ////End CR-30 //Manage div heights here //pnlTitleLabel.Height = pnlTitleText.Height; //lblDescText.Height = lblDesc.Height; //End of Code //Add controls to the dynamic table here //End code to add controls to dynamic table if (Request.UrlReferrer != null) { hdnReferrer.Value = Request.UrlReferrer.ToString(); } if (Session["JSTurnedOn"] != null && Request.UrlReferrer != null) { if (string.Compare(Session["JSTurnedOn"].ToString(), "True", true) == 0 && (this.Page.Request.UrlReferrer.ToString().Contains("searchres.aspx") || this.Page.Request.UrlReferrer.ToString().Contains("newupdated.aspx"))) { //BackToSearchResultsLink.Visible = true; lnkBtnSearchRes.Visible = true; } } } else { throw new ArgumentException("Missing parameter in detail.aspx", "value"); } PubOrderOK.OnClientClick = String.Format("fnAddItemToCart('{0}','{1}')", PubOrderOK.UniqueID, ""); PubCoverOrderOK.OnClientClick = String.Format("fnAddItemToCart('{0}','{1}')", PubCoverOrderOK.UniqueID, ""); //Newly added code to reset textbox when cancel button is clicked on popup PubOrderCancel.OnClientClick = String.Format("fnCancelClick('{0}')", QuantityOrdered.ClientID); PubCoverOrderCancel.OnClientClick = String.Format("fnCancelClick('{0}')", QuantityOrderedCover.ClientID); PubOrderLink.Attributes.Add("href", "javascript:fnPostBack(" + "'" + PubOrderOK.UniqueID + "','" + "','" + QuantityOrdered.ClientID + "','" + PubQtyLimit.ClientID + "','" + labelErrMsgPubOrder.ClientID + "','" + PubOrderModalPopup.BehaviorID + "')"); PubCoverOrderLink.Attributes.Add("href", "javascript:fnPostBack(" + "'" + PubCoverOrderOK.UniqueID + "','" + "','" + QuantityOrderedCover.ClientID + "','" + CoverQtyLimit.ClientID + "','" + labelErrMsgPubCover.ClientID + "','" + PubCoverOrderModalPopup.BehaviorID + "')"); dlistRelatedProducs.DataSource = (ProductCollection)SQLDataAccess.GetRelatedProducts(_pubid); dlistRelatedProducs.DataBind(); if (dlistRelatedProducs.Items.Count > 0) { //Do not do anything } else { divRelatedProducts.Visible = false; } //Display the master page tabs GlobalUtils.Utils UtilMethod = new GlobalUtils.Utils(); if (Session["NCIPLEX_Pubs"] != null) { Master.LiteralText = UtilMethod.GetTabHtmlMarkUp(Session["NCIPLEX_Qtys"].ToString(), ""); } else { Master.LiteralText = UtilMethod.GetTabHtmlMarkUp("", ""); } UtilMethod = null; } #region Rebuild Dynamic Controls //Begin HITT - 9846 - Dynamic Controls need to re-initalized each time when the page posts back try { //Begin CR-30: HITT 8719 - Pub Translations _pubid = SQLDataAccess.GetPubIdFromProductId(Request.QueryString["prodid"]); int counter = 0; Panel linksPanel = new Panel(); foreach (Product tranlatedproduct in SQLDataAccess.GetProductTranslations(_pubid)) { HyperLink TranslationsLink = new HyperLink(); TranslationsLink.CssClass = "linkDefault"; TranslationsLink.Text = tranlatedproduct.Language; TranslationsLink.NavigateUrl = "detail.aspx?prodid=" + tranlatedproduct.ProductId; Label spaceLabel = new Label(); spaceLabel.Text = " "; linksPanel.Controls.Add(TranslationsLink); linksPanel.Controls.Add(spaceLabel); TranslationsLink = null; spaceLabel = null; counter++; } if (counter > 0) { plcTranslations.Controls.Add(linksPanel); } else { lblTranslations.Visible = false; } linksPanel = null; //End CR-30 } catch (Exception Ex) { LogEntry logEnt = new LogEntry(); string logmessage = "\r\n"; logmessage += "Translation Pubs Error on detail: " + "\r\n"; logmessage += Ex.Message + Ex.StackTrace; logEnt.Message = logmessage; Logger.Write(logEnt, "Logs"); } //End HITT - 9846 #endregion }