Ejemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            this.attributeID = this.Request.QueryString["AttributeID"].ToInt32();

            if (!this.IsPostBack)
            {
                AttributeModel   model = userManager.ReadAttribute(this.attributeID);
                List <IDataItem> list  = model.ToDataItem();
                this.SetControlValue(list);
            }
        }