Ejemplo n.º 1
0
        protected override void AttachChildControls()
        {
            if (string.IsNullOrWhiteSpace(this.Page.Request.QueryString["TopicId"]))
            {
                base.GotoResourceNotFound("");
            }
            else
            {
                this.topicId = this.Page.Request.QueryString["TopicId"];
            }
            this.rptActivity3 = (VshopTemplatedRepeater)this.FindControl("rptActivity3");
            DataTable topics = VshopBrowser.GetHomeActivityTopics(ClientType.VShop, topicId);

            this.rptActivity3.DataSource = topics;
            this.rptActivity3.DataBind();
            PageTitle.AddSiteNameTitle("רÌâÀ¸");
        }