About Singleton

  • Thread starter Thread starter Anandraj
  • Start date Start date
A

Anandraj

Hi All,
I want to Implement the singleton in my ASP.NET Application, For that I want
to create a ASPX Page as Singleton Class from which I want load the diffrent
Classes for different Funtionality which is going to return HTML according
to that request. so Is it possible to create a C# Class which is going to
return the HTML . so that I can dynamically load those classes in the
Singleton ASPX Page.

Any suggestion will help me.

Thanks
Anandraj.A.
 
Anandraj said:
I want to Implement the singleton in my ASP.NET Application, For that I want
to create a ASPX Page as Singleton Class from which I want load the diffrent
Classes for different Funtionality which is going to return HTML according
to that request. so Is it possible to create a C# Class which is going to
return the HTML . so that I can dynamically load those classes in the
Singleton ASPX Page.

Any suggestion will help me.

Not sure about the ASP.NET parts of what you're after, but the
following page talks about implementing the Singleton pattern in C#:

http://www.pobox.com/~skeet/csharp/singleton.html
 
Back
Top