Multiple choice asp When writing ASP code, what are the correct delimiters to use? <!-- code --> < code > <% code > <% code %> Reveal answer Fill a bubble to check yourself D Correct answer Explanation In ASP, server-side code is enclosed within <% %> delimiters. This tells the server to process the enclosed code as script rather than HTML. Option D shows the complete correct delimiter pair with both opening and closing tags.