| Author: sathiya 06 Sep 2006 | Member Level: Gold | Rating:  Points: 2 |
Placeholder reserves the space for runtime objects.
to add controls <PlaceHolder>.Controls.Add(<NewControl>);
To Updatea controls
TextBox tobj = (TextBox) <PlaceHolder>.Controls["<NewControlName>"];
tobj.text = "New String";
@ Sathiya
|
| Author: Hiren Patel 07 Sep 2006 | Member Level: Gold | Rating:  Points: 2 |
Take One PlaceHolder Control
Give it ID plcParent
In Codebehind file
using plcParent.Controls.Add() method you can add controls to place holder
Regards,
Hiren
http://hidigs.uni.cc
|