hi, i m asha bhatt.
plz look at this my code
i have declare this first :-
CheckBox chkList1;
protected void Page_Load(object sender, EventArgs e)
{
}
protected void NextQuestionButton_Click(object sender, EventArgs e)
{
createcheckbox();
}
public void createcheckbox()
{
Response.Write("asha");
chkList1 = new CheckBox();
chkList1.Text = "strCheckboxText";
chkList1.ID = "Chk";
chkList1.Font.Name = "Verdana";
chkList1.Font.Size = 9;
}
I have button Next , when i will click on the next button then dynamically checkbox should create , which i cant do it.
Plz help me