Latest web development tutorials

ASP Clearメソッド

レスポンスオブジェクトリファレンス 完全なレスポンスオブジェクトリファレンス

クリアをクリア任意のHTML出力方法は、バッファリングされています。

注:このメソッドは、レスポンスヘッダ、本体のみの空の応答をクリアしません。

注:でResponse.Bufferがfalseの場合、このメソッドは、実行時エラーが発生します。

文法

response.Clear

<%
response.Buffer=true
%>
<html>
<body>
<p>This is some text I want to send to the user.</p>
<p>No, I changed my mind. I want to clear the text.</p>
<%
response.Clear
%>
</body>
</html>

输出:

(nothing)


レスポンスオブジェクトリファレンス 完全なレスポンスオブジェクトリファレンス