I have recently been learning about Data Access Layers, Business Logic Layers and Presentation Layers, but I still have a few things that aren't quite clear.
I can use the DAL and BLL with the Presentation Layer to get or set information in a database.
But I also thought about asp control events, and how I should implement them.
Should I, for example, try to put a button click event into the BLL or should I just leave it in the aspx code behind file?
And if I should put them into the BLL how would I go about doing this?
I'm not sure how to make an event call a method which is in the BLL, so any advice would be greatly appreciated.