Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.