I put a link on a page and onclick i wrote some code to add some controls after clicking,
DropDownList newDropdownlist = new DropDownList();
panel.Controls.Add(newDropdownlist);
CheckBox newChkbox = new CheckBox();
panel.Controls.Add(newChkbox);
TextBox txt = new TextBox();
txt.ID = "txtPhoneValue";
panel.Controls.Add(txt);
My Problem is when i click on this link it add these controls one time, but if i clicked again it don't add more, seams its removing the previous added controls and re add them again.
I want to add more and more each link click.