0

你能像 PHP 如何退出解析模式那样逃避进出 ASP 标记吗?例如,在 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 } ?>
4

1 回答 1

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,就此而言)

于 2012-09-29T14:28:01.400 回答