2013年9月25日 星期三

輸出緩衝區的內容/清除緩衝區的內容


<body>
<%
Dim i As Integer
For i = 1 to 10   Response.Write("i = " & i & "<br />") ' 輸出變數 i 的數值
   If (i Mod 4) = 0 Then
      Response.Flush() '輸出緩衝區的內容
   Else
      Response.Clear() '清除緩衝區的內容
   End If
Next%>
</body>

沒有留言:

張貼留言