最新のWeb開発のチュートリアル
 

ASPクリア方法


<コンプリートレスポンスオブジェクト参照

Clearメソッドは、バッファリングされたHTML出力をクリアします。

Note:この方法では、唯一のレスポンスボディをレスポンスヘッダをクリアしません。

Note:で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>

Output:

(nothing)

<コンプリートレスポンスオブジェクト参照