ASP.NET(vb.net) Response.Clear() - Response Object - Response.Clear() : The Clear method erases any buffered HTML output. However, the Clear method erases only the response body; it does not erase response headers. You can use this method to handle error cases. Note that this method causes a run-time error if Response.Buffer has not been set to TRUE.
ShotDev Focus:
- ASP.NET(vb.net) Response.Clear() - Response Object
Example
AspNetResponseClear.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Response.BufferOutput = True 'Response.Buffer = True Dim i As Integer For i = 0 To 10000 Response.write(i & "<br>") Next Response.Clear() End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form id="form1" runat="server"> <asp:Label id="lblText" runat="server"></asp:Label> </form> </body> </html>
Screenshot