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

时间:2012-09-29 14:23:28

标签: php asp-classic

你可以逃脱ASP标签,比如PHP如何退出解析模式?例如,在PHP中,您可以在代码块的中间退出,如果您想要显示很长的HTML代码块,这很有用。

<?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 } ?>

1 个答案:

答案 0 :(得分:2)

你可以。

 <% 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 %>

这种可能造成的乱七八糟的意大利面是经典ASP的主要缺陷之一,除非人们努力保持代码易于管理。

我不确定你为什么要使用经典的ASP。 (或者php,就此而言)