En son web geliştirme öğreticiler
 

ASP temizle Yöntem


<Tam Yanıt Nesne Referans

Clear yöntemi herhangi tamponlu HTML çıktısını temizler.

Note: Bu yöntem yanıt başlıklarını, tek yanıtı gövdesini temizlemez.

Note: Response.Buffer false ise, bu yöntem bir çalıştırma hatası neden olur.

Sözdizimi

response.Clear

Örnekler

<%
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)

<Tam Yanıt Nesne Referans