private void GetModel()
        {
            string id = ChangeHope.WebPage.PageRequest.GetQueryString("id");
            ShowShop.BLL.SystemInfo.ArticleChannel bll = new ShowShop.BLL.SystemInfo.ArticleChannel();
            Model.SystemInfo.ArticleChannel model = bll.GetModel(id);
            if(model!=null)
            {
                this.txtDescription.Text = model.Description;
                this.txtId.Value = model.Id;
                this.txtName.Text = model.Name;
                this.txtShop.SelectedValue = model.Shop;
                this.ckbType.SelectedValue = model.Type;
                if (model.Type == "2")
                {
                    Page.RegisterStartupScript("ggg", "<script>changetype(2);</script>");
                }
                this.txtProjectName.Text = model.ProjectName;
                this.txtProjectUtil.Text = model.ProjectUtil;
                this.ckbTarget.SelectedValue = model.Target;
                this.txtAddress.Text = model.ExternalLink;
                this.txtWebPagePath.Text = model.DefaultTemplate;
                this.txtListPageTemplate.Text = model.ListTemplate;
                this.txtContentPageTemplate.Text = model.ContentTemplate;
                //this.txtTemplate.Text = model.Template;
                this.txtMeteKey.Text = model.MeteKey;
                this.txtMeteDescription.Text = model.MeteDescription;
                this.txtWebPagePath.Text = model.DefaultTemplate;
                this.txtListPageTemplate.Text = model.ListTemplate;
                this.txtContentPageTemplate.Text = model.ContentTemplate;

                foreach (ListItem item in this.ckbPower.Items)
                {
                    if (model.Power.IndexOf(item.Value+",") >= 0)
                    {
                        item.Selected = true;
                    }
                }
            }
            model = null;
            bll = null;
        }