ASP End 方法


End 方法停止对脚本的处理,并返回当前的结果。

注意:如果 Response.Buffer 被设置为 true ,此方法会输出缓存的内容。如果您不希望向用户返回任何任何输出,应该首先调用 Response.Clear 。

语法

  1. Response.End

实例

  1. <html>
    <body>
    <p>I am writing some text. This text will never be
    <%
    Response.End
    %>
    finished! It's too late to write more!</p>
    </body>
    </html>

    输出:

    I am writing some text. This text will never be