J
Justin
Greetings all,
I'm receiving this error when I attempt to pull data, in
the form of an ArrayList out of a Session.
ArrayList al = new ArrayList();
al = (ArrayList)Session["myArrayList"]; // error here
How can this cast be invalid, when the session data IS an
ArrayList??
What's going on here, but more importantly how do I fix
this?
Also note that the same code has worked in the past.
Thanks,
Justin
I'm receiving this error when I attempt to pull data, in
the form of an ArrayList out of a Session.
ArrayList al = new ArrayList();
al = (ArrayList)Session["myArrayList"]; // error here
How can this cast be invalid, when the session data IS an
ArrayList??
What's going on here, but more importantly how do I fix
this?
Also note that the same code has worked in the past.
Thanks,
Justin