Multiple choice asp

It is imperative when writing ASP code is to begin every file with which statement?

  1. <% Language=VBScript %>

  2. <% ASPLanguage = VBScript %>

  3. <%@ Language=VBScript %>

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

ASP language directives use the @ symbol: <%@ Language=VBScript %>. This is a special directive syntax that must be placed at the very beginning of an ASP file to specify which scripting language to use. The @ symbol distinguishes it from regular ASP code delimiters. While VBScript is the default, explicitly declaring it is good practice, especially when using JavaScript instead.