i u se one placeholder and create 5 textbox and two ADD,REMOVE button and added line break...
on click of ADD another line generate with same 5 textbox and two ADD,REMOVE button ..
and again click on ADD another ..and so on
Now i want to remove line two from my placeholder on click on REMOVE button ...is it possible please help me ................
............urgent..............
Loading
John WiesePosted Jun 11, 2010, 9:50 AM
foreach(Object o in PlaceHolder.Controls)
{
// Do something here, like check the o.Type to see what type it is and then cast it to that type and check the name so you can remove it if needed
}