I figured this out guys.
You can't declare members like...
Quote:
|
quote:Public myVariable as String = Session ("myVariable")
|
.NET hates that. You have to declare the member like this...
Quote:
|
quote:Public myVariable as String
|
And then later on set it equal to your session variable, e.g.
Quote:
|
quote:myVariable = Session ("myVariable")
|
Seems kind of stupid to me, but oh well.
Aaron