Passing "MyClass" Object between Pages
hello,
I have to Fill the property of my made class from one.aspx page.
class is smthng like this:
public class MyClass
{
string _Name = "";
public string Name
{
get { return _Name; }
set { _Name = value; }
}
}
and I have to access it's property in two.aspx.
I dont want to use session object collection.
can anybody give me good concept for this..
thanks in advance....
cheers...
__________________
DPK..
|