<Complete Reference Response Obyek
Clear Metode membersihkan setiap keluaran HTML buffer.
Note: Metode ini tidak menghapus header respon, hanya respon tubuh.
Note: Jika Response.Buffer adalah palsu, metode ini akan menyebabkan kesalahan run-time.
Sintaksis
response.Clear
contoh
<%
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)
<Complete Reference Response Obyek