Apologies if this has already been addressed, but I couldn't find a straight-forward answer.
My friend who is an experienced developer (but not familiar with .NET) asked me where ASP.NET code-behind code is actually executed; on the server or on the client. My assumption was that it is executed on the client and therefore compiled to JavaScript, since methods in your code-behind file will respond to client-side events such as selecting a dropdown list, which do not cause a post-back.
What I'm really looking for is a more intimate understanding of how/where the code in a code-behind file is executed in relation to the rest of the application. Any learning resources would be appreciated.
Thank you!
