Can anyone tell me if we have anything like JAVA BEAN in C#.NET using ASP.NET?
You know with java bean if we construct one object in one page we can use its properties in any pages in JSP
what is the technical term of same thing in C#.NET with ASP.NET. I mean i need a class constructor which will hold some value and hat value can be retrieved from any pages in asp.net.
example…
if we have 3 pages like 1.aspx, 2.aspx and 3.aspx and one dll file my.dll which have myClass{}
in 1.aspx i define
myClass my=new myClass();
my.name=“Evan”
now in 2.aspx i want this…
<b>my.getName</b>
in 3.aspx i need the same thing
i dont want to use session here can you please tell me how i can do this???
Sorry, i dont think i understand enough about programming to answer your question. i dont know about serialization yet. good luck with finding a solution.