Posted on: 1/20/2015 11:22:14 AM | Views : 586

hi,
While I am trying to find the textboxes inside that panel I could'nt able to find it .
tr = new TableRow(); tr.BorderColor = System.Drawing.Color.Blue; tc = new TableCell(); tc.ID = "TCNUM" + i.ToString(); if (modelvarType.Rows[i]["SysVar_Fld_Type"].ToString()=="1") { Label lbl=new Label(); lbl.Text = modelvarType.Rows[i]["SysVar_Fld_Caption"].ToString() + " : "; lbl.ID = "lbl"+ i; TextBox tb = new TextBox(); tb.ID = "tb" + i; tb.ToolTip = "Please Enter Float Value"; tc.Controls.Add(lbl); tc.Controls.Add(tb); tr.Controls.Add(tc); t.Rows.Add(tr); } this.Panel1.C ...

Go to the complete details ...