控制缓存

代码:

<%

Response.Buffer=true

%>

<!DOCTYPE html>

<html>

<body>

<p>

This text will be sent to your browser when my response buffer is flushed.

</p>

<%

Response.Flush

%>

</body>

</html>

结果:

This text will be sent to your browser when my response buffer is flushed.

相关文章