ASP.NET(vb.net) Response.ClearContent() - Response Object - Response.ClearContent() : Clears all content output from the buffer stream.
ShotDev Focus:
- ASP.NET(vb.net) Response.ClearContent() - Response Object
Example
AspNetResponseClearContent.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Response.ClearContent() lblText.Text = "Time Now : " & Date.Now() 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>
Screenshot