예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            Label3.Visible  = false;
            Label5.Text     = Manager.GetParentName();
            Button1.Visible = false;
            if (Session["ParentID"] != null && !this.IsPostBack)
            {
                //Manager.SetParentName(Session["ParentID"].ToString());
                int num = int.Parse(Session["ParentID"].ToString());
                DropDownList1.Items.Add("");
                foreach (DataRow dr in ParentKidMethods.AllKidsName(num).Rows)
                {
                    DropDownList1.Items.Add(new ListItem(dr["KidsName"].ToString(), dr["KidsID"].ToString()));
                }
            }



            //Button[] Buttons = new Button[num];

            //int top = 280;
            //for (int i = 0; i < num; i++)
            //{
            //    Buttons[i] = new Button();
            //    Buttons[i].Width = 70;
            //    Buttons[i].Height = 30;
            //    Buttons[i].Style.Add(HtmlTextWriterStyle.Position, "absolute");
            //    Buttons[i].Style.Add(HtmlTextWriterStyle.MarginTop, top+"px");
            //    top += 40;
            //    Buttons[i].Style.Add(HtmlTextWriterStyle.MarginLeft, "47%");
            //    this.Form.Controls.Add(Buttons[i]);


            //}
        }
예제 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            Label1.Text = " שלום , " + Manager.GetParentName();

            foreach (DataRow DR in TestKidMethod.GetallMath(ParentKidMethods.GetKidId(Manager.GetParentId())).Rows)
            {
                GridView1.DataSource = TestKidMethod.GetallMath(ParentKidMethods.GetKidId(Manager.GetParentId()));
                GridView1.DataBind();
            }
        }