Difficulty: Easy
Correct Answer: ASP pages are stored in files with the .asp extension and execute on the server.
Explanation:
Introduction / Context:
Classic Microsoft Active Server Pages (ASP) is a server-side scripting technology. The server processes requests for .asp files, executes the embedded code, and returns HTML (or other content) to the client.
Given Data / Assumptions:
Concept / Approach:
ASP separates server execution from client rendering. The server evaluates code (for example, VBScript or JScript), interacts with databases or components, and then generates the response. The browser displays the resulting HTML/CSS/JS; it does not execute ASP code itself.
Step-by-Step Solution:
Verification / Alternative check:
Documentation and tutorials show server execution and the presence of script blocks within ASP pages that are not sent to the client verbatim.
Why Other Options Are Wrong:
Common Pitfalls:
Exposing server-side code accidentally; failing to separate logic and presentation in maintainable ways.
Final Answer:
ASP pages are stored in files with the .asp extension and execute on the server.
Discussion & Comments