コード例 #1
0
ファイル: WAPTopics.cs プロジェクト: damoOnly/e-commerce
        protected override void AttachChildControls()
        {
            if (!int.TryParse(this.Page.Request.QueryString["TopicId"], out this.topicId))
            {
                base.GotoResourceNotFound("");
            }
            if (HiContext.Current.User.UserRole == UserRole.Member && ((Member)HiContext.Current.User).ReferralStatus == 2 && string.IsNullOrEmpty(this.Page.Request.QueryString["ReferralUserId"]))
            {
                string text = System.Web.HttpContext.Current.Request.Url.ToString();
                if (text.IndexOf("?") > -1)
                {
                    text = text + "&ReferralUserId=" + HiContext.Current.User.UserId;
                }
                else
                {
                    text = text + "?ReferralUserId=" + HiContext.Current.User.UserId;
                }
                this.Page.Response.Redirect(text);
                return;
            }
            this.imgUrl     = (HiImage)this.FindControl("imgUrl");
            this.litContent = (System.Web.UI.WebControls.Literal) this.FindControl("litContent");
            TopicInfo topic = VshopBrowser.GetTopic(this.topicId);

            if (topic == null)
            {
                base.GotoResourceNotFound("");
            }

            //主题大图和标题
            this.imgUrl.ImageUrl = topic.IconUrl;
            this.litContent.Text = topic.Content;
            PageTitle.AddSiteNameTitle(topic.Content);
        }
コード例 #2
0
ファイル: VActivity1.cs プロジェクト: damoOnly/e-commerce
        protected override void AttachChildControls()
        {
            if (!int.TryParse(this.Page.Request.QueryString["TopicId"], out this.topicId))
            {
                base.GotoResourceNotFound("");
            }
            this.imgUrl     = (HiImage)this.FindControl("imgUrl");
            this.litContent = (System.Web.UI.WebControls.Literal) this.FindControl("litContent");
            //this.litPager = (System.Web.UI.WebControls.Literal)this.FindControl("litPager");
            //this.rptProducts = (VshopTemplatedRepeater)this.FindControl("rptProducts");
            TopicInfo topic = VshopBrowser.GetTopic(this.topicId);

            if (topic == null)
            {
                base.GotoResourceNotFound("");
            }
            if (HiContext.Current.User.UserRole == UserRole.Member && ((Member)HiContext.Current.User).ReferralStatus == 2 && string.IsNullOrEmpty(this.Page.Request.QueryString["ReferralUserId"]))
            {
                string text = System.Web.HttpContext.Current.Request.Url.ToString();
                if (text.IndexOf("?") > -1)
                {
                    text = text + "&ReferralUserId=" + HiContext.Current.User.UserId;
                }
                else
                {
                    text = text + "?ReferralUserId=" + HiContext.Current.User.UserId;
                }
                base.RegisterShareScript(topic.IconUrl, text, topic.Content, topic.Title);
            }
            this.imgUrl.ImageUrl = topic.MobileBannerImageUrl;
            this.litContent.Text = topic.Content;

            //this.rptProducts.DataSource = ProductBrowser.GetTopicProducts(this.topicId, new VTemplateHelper().GetTopicProductMaxNum());
            //int total = 0;
            //int pageNumber = 0;
            //int pageSize = new VTemplateHelper().GetTopicProductMaxNum();
            //if (!int.TryParse(this.Page.Request.QueryString["pageNumber"], out pageNumber))
            //{
            //    pageNumber = 1;
            //}
            //this.rptProducts.DataSource = ProductBrowser.GetProducts(this.topicId, null, "", pageNumber, pageSize, out total, " sort2 ",true,"asc");//分页查询
            //int totalPage = total % pageSize != 0 ? (total / pageSize + 1) : (total / pageSize);//总页数
            //this.litPager.Text = string.Format("<li class=\"previous {0}\"><a  href=\"/Vshop/Activity1.aspx?TopicId={1}&pageNumber={2}\">上一页</a></li><li class=\"next {3}\"><a href=\"/Vshop/Activity1.aspx?TopicId={1}&pageNumber={4}\">下一页</a></li>", pageNumber > 1 ? "" : "disabled", topicId, pageNumber - 1, totalPage - pageNumber > 0 ? "" : "disabled", pageNumber + 1);

            //this.rptProducts.DataBind();
            PageTitle.AddSiteNameTitle(topic.Title);
        }
コード例 #3
0
        protected override void OnInit(EventArgs e)
        {
            if (!int.TryParse(this.Page.Request.QueryString["TopicId"], out this.topicId))
            {
                this.GotoResourceNotFound("");
            }
            TopicInfo topic = VshopBrowser.GetTopic(this.topicId);

            if (topic == null || topic.TopicType == 0 || topic.TopicType != 1)
            {
                this.GotoResourceNotFound("专题不存在");
            }
            TopicHomePage topicHomePage = new TopicHomePage();

            topicHomePage.TopicId = topic.TopicId;
            this.pageTitle        = topic.Title;
            this.PanelTheme.Controls.Add(topicHomePage);
            base.OnInit(e);
        }
コード例 #4
0
ファイル: VTopics.cs プロジェクト: tyriankid/WFX
        protected override void AttachChildControls()
        {
            if (!int.TryParse(this.Page.Request.QueryString["TopicId"], out this.topicId))
            {
                base.GotoResourceNotFound("");
            }
            this.imgUrl      = (HiImage)this.FindControl("imgUrl");
            this.litContent  = (Literal)this.FindControl("litContent");
            this.rptProducts = (VshopTemplatedRepeater)this.FindControl("rptProducts");
            TopicInfo topic = VshopBrowser.GetTopic(this.topicId);

            if (topic == null)
            {
                base.GotoResourceNotFound("");
            }
            this.imgUrl.ImageUrl        = topic.IconUrl;
            this.litContent.Text        = topic.Content;
            this.rptProducts.DataSource = ProductBrowser.GetTopicProducts(MemberProcessor.GetCurrentMember(), this.topicId, new VTemplateHelper().GetTopicProductMaxNum());
            this.rptProducts.DataBind();
            PageTitle.AddSiteNameTitle("专题详情");
        }