I'm having this problem of passing session object. When i move from one hyperlink to another, my session object becomes empty.
say:
in page1.aspx
Session("isValid") = True

and when i clicked on the hyperlink
<a href=page2.aspx></a>

it still goes to page2 but I can't get the value of Session("isValid"), when i try to trace it, it is empty.

I've tried using response.redirect, but still the same prob.

so, how can i pass session around the pages?