Multiple choice technology web technology

Which of the following Page Structure Options of ASP.NET 2.0 refers to the business logic of the application?

  1. Code-inline model

  2. Code-behind model

  3. Either 1 or 2

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The code-behind model separates presentation (HTML/markup) from business logic by placing code in a separate class file. This separation makes the application more maintainable and allows developers to focus on business logic independently of the UI layer, following better software engineering practices.