hi there. using vb.net here with asp.net
basically, i have made a .vb file. this file has public properties that can get or set values
i have 2 aspx pages
both create an instance of this public property file.
one, sets the values as required, the other one needs to retrieve it based on a unique number given to it in the querystring.
however when it tries to do that, i get a nullreference exception. i am guessing its because i created a new instance - each instance is its own instance/space therefore when accessing a new instance of a class, it cant get any values - because nothing has been set in it!
is this right? if so - how can i resolve it?
thanks
