Something I have never thought too hard about but I am curiuos and want to understand the actual reasoning. In ASP.NET using VB.NET, you can define the wired up button click event (to an ASP.NET server control) in 2 different ways (for the purpose of this conversation - manually wiring up via button property not in question here):
- Double click on the button in the designer which produces an event in the code behind with a Protected method.
- In the code behind, select the button from the list of controls, and then select it's 'Click' event. This produces a Private method.
I understand the difference between Private and Protected; that is not in question here. I just want to know the actual reason (not guessing or speculating please) of why based on how the wired up event is autocreated it generates a different Access Level on the method?
Thanks!
