on the fly
-
hi.... is there any way i can make controls on the fly??? as in during the run time i create combo boses and text boses and labels??? pls provide some guidance... any help appreciated... tks... "Rejoice always, pray without ceasing, in everything give thanks; for this is the will of God in Christ Jesus for you."1Thess. 5:16-18
-
hi.... is there any way i can make controls on the fly??? as in during the run time i create combo boses and text boses and labels??? pls provide some guidance... any help appreciated... tks... "Rejoice always, pray without ceasing, in everything give thanks; for this is the will of God in Christ Jesus for you."1Thess. 5:16-18
You mean like this
TextBox txt = new TextBox(); Page.Controls.Add(txt);
-
hi.... is there any way i can make controls on the fly??? as in during the run time i create combo boses and text boses and labels??? pls provide some guidance... any help appreciated... tks... "Rejoice always, pray without ceasing, in everything give thanks; for this is the will of God in Christ Jesus for you."1Thess. 5:16-18
The real trick with that stuff is to make sure it happens early enough that your postback events don't get screwed up. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder
-
The real trick with that stuff is to make sure it happens early enough that your postback events don't get screwed up. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder
well..i am a beginner..so can u pls elaborate? "Rejoice always, pray without ceasing, in everything give thanks; for this is the will of God in Christ Jesus for you."1Thess. 5:16-18
-
well..i am a beginner..so can u pls elaborate? "Rejoice always, pray without ceasing, in everything give thanks; for this is the will of God in Christ Jesus for you."1Thess. 5:16-18
Basically make sure that your controls are all loaded by page load, and that their names and positions will not change during postback. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder
-
Basically make sure that your controls are all loaded by page load, and that their names and positions will not change during postback. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder