Classes

  • Thread starter Thread starter Danny
  • Start date Start date
D

Danny

Is it possible to use own made classes when using asp.net??
And if so how can i use them so i can use them during a whole session,
without loosing data from the class??
 
Sure, you can create classes that are used during runtime. You can also
save those objects to session variables if you want.
 
Is it possible to use own made classes when using asp.net??

It is not possible NOT to use classes with ASP.Net. System.Web.UI.Page is a
class, for example.
And if so how can i use them so i can use them during a whole session,
without loosing data from the class??

Again, in .Net, almost everything is a class. So, the only answer I can give
to this is, learn ASP.Net. The answers to the second question are too many
to enumerate.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
 
Back
Top