i am creating online examination system.
in that i will load 10questions per page.
here i want to create radio button list with an array object.
i tried but i gives null reference exception.
please help me
choices = new RadioButtonList[items];
for (int x = 0; x < items; x++)
{
//int i = 0;
ques[x] = new Label();
ques[x].ID = "ques" + x.ToString();
questions[x] = GetRandomQuestionClass.LOAD_QUESTIONS(x);
ques[x].Text = Convert.ToString(x + 1) + ".) " + GetRandomQuestionClass.LOAD_QUESTIONS(x);
choices[x] = new RadioButtonList();
choices[x].ID = "choices" + x.ToString();
}
please hel me i wrote all those code in the button_click