Hello there,
I am using ASP .NET and C#, and using the code-behind-pages concept.
I am trying to implement a business delegate pattern in ASP .NET to reduce coupling between the presentation and business tiers.
I want to have several ASP pages send information (through asp buttons clicks) to a "business delegate" ASP page, which will in turn send the necessary information to a C# method.
The problem is that each button_click event in ASP .NET is directly tied to a C# method. I am having trouble understanding how to separate the presentation and business logic because of that.
Any ideas? Thanks :)
I am using ASP .NET and C#, and using the code-behind-pages concept.
I am trying to implement a business delegate pattern in ASP .NET to reduce coupling between the presentation and business tiers.
I want to have several ASP pages send information (through asp buttons clicks) to a "business delegate" ASP page, which will in turn send the necessary information to a C# method.
The problem is that each button_click event in ASP .NET is directly tied to a C# method. I am having trouble understanding how to separate the presentation and business logic because of that.
Any ideas? Thanks :)
Comment