ASP Clear Method
Definition and Usage
The Clear method clears any buffered HTML output.
Note:This method cannot clear the response headers, it can only clear the response body.
Note:If response.Buffer is false, this method will cause a run-time error.
Syntax
response.Clear
Example
<% response.Buffer=true %> <html> <body> <p>Here is some text that I want to send to the user.</p> <p>Nie, zmieniłem zdanie. Chcę wyczyścić tekst.</p> <% response.Clear %> </body> </html>
Wynik:
(nic)