ASP是否允许您从PHP等脚本标签中逃脱?

Can you escape in and out of ASP tags like how PHP can exit out of parsing mode? For instance, in PHP, you can exit in the middle of a code block, which is useful if you want to show long chunks of HTML code.

<?php if ($expression == true) { ?>

    <h1>This will show if the expression is true.</h1>
    <p>I can put lots of HTML code here.</p>

<?php } ?>

You can.

 <% if (expression) then %>
     <h1>This will show if the expression is true.</h1>  
     <p>I can put lots of HTML code here.</p>  
 <% end if %>

The kind of spaghetti like mess that this could create was one of the major flaws in classic ASP, unless one made strenuous efforts to keep ones code manageable.

I'm not sure why you'd want to use classic ASP though. (Or php, for that matter)