End

阅读:59      收藏:0      [点我收藏+]

ASP End 方法


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

注意:如果 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>

输出:

I am writing some text. This text will never be
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!