Here is the code to add checkbox dynamically
CheckBox cb1 = new CheckBox(); cb.Text = "Option1";
CheckBox cb2 = new CheckBox(); cb.Text = "Option2";
this.Page.Controls.Add(cb1); this.Page.Controls.Add(cb2);