Append To Log (VB.net) : Response Log « Response « ASP.Net






Append To Log (VB.net)

<%@ Page Language="vb" %>
<html>
   <head>
      <title>Adding an HTTP Header in ASP.NET</title>
      <script runat="server">
         Sub Page_Load()
            Response.AppendToLog("Hello from Page_Load and java2s.com!")
            Message.Text = "Message written to IIS Log!"
         End Sub
      </script>
   </head>
<body>
   <asp:label id="Message" runat="server"/>
</body>
</html>
           
       








Related examples in the same category