当我调用此函数时,它给出了一个错误。
发生了'System.NullReferenceException'类型的异常 App_Web_0bc3rjap.dll但未在用户代码中处理 information:对象引用未设置为对象的实例。
public void get_userans()
{
int i=(int) Session["quno"];
int k = i-1;
ArrayList userans = new ArrayList();
userans=(ArrayList) Session["correct_ans"];
if (RadioButton1.Checked)
{
userans.Add("A");
}
else if (RadioButton2.Checked)
{
userans.Add("B");
}
else if (RadioButton3.Checked)
{
userans.Add("C");
}
else if (RadioButton4.Checked)
{
userans.Add("D");
}
Session["correct_ans"] = userans;
foreach(object ar in userans){
Response.Write(ar.ToString());
}
}
答案 0 :(得分:0)
它接缝你还没有添加会话。首先添加会话然后执行上面的代码。
Session.Add("quno","value");
Session.Add("correct_ans","value_answer");