J
John
Hi,
I do a Response.Redirect(page), and on the second page I have redirected to,
I get an object out of the session (or at least I attempt to). Just before
the redirect I do:
Session["token"] = tokenizer;
On the redirected page, in PageLoad I do:
Tokenizer tokenizer = (Tokenizer)Session["token"];
But the tokenizer is null, because the session is cleared. This is a
default web application, so I am not sure why it isnt working.
Any advice?
John.
I do a Response.Redirect(page), and on the second page I have redirected to,
I get an object out of the session (or at least I attempt to). Just before
the redirect I do:
Session["token"] = tokenizer;
On the redirected page, in PageLoad I do:
Tokenizer tokenizer = (Tokenizer)Session["token"];
But the tokenizer is null, because the session is cleared. This is a
default web application, so I am not sure why it isnt working.
Any advice?
John.