Search code examples
c#asp.net.netvb.netlayered

Can we write all the control events in a seperate class file in different layer rather than in code-behind of web-page?


Can we write all the control events in a seperate class file in different layer rather than in code-behind of web-page ? Kindly help.

Thanks in advance.


Solution

  • Yes you can. One way of doing that is to make a partial class with the same name as your codebehind file and use that to contain the events.