最新的Web开发教程
 

ASP End方法


<完全反应对象参考

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

Note:如果将Response.Buffer已设置为true,此方法将刷新缓冲区。 如果你不希望任何输出返回给用户,你应该首先调用Response.Clear。

句法

Response.End

例子

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

Output:

I am writing some text. This text will never be

<完全反应对象参考