hey frnds
i want to add check box dynamically in my web forms in asp. So give me the idea that how i can..
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Brijendra GautamPosted Mar 24, 2014, 6:15 AM
CheckBox cbx= new CheckBox();
cbx.ID="checkbox1";
Page.Controls.Add(cbx);
OR
panel1.Controls.Add(cbx);
OR
placeholder1.Controls.Add(cbx);
Munesh SharmaPosted Mar 24, 2014, 6:11 AM