Adding file dependencies (VB.net) : File Dependencies « Response « ASP.Net






Adding file dependencies (VB.net)

<%@ Page Language="vb" %>
<%@ OutputCache Duration="300" VaryByParam="None" %>
<html>
   <head>
      <title>Adding file dependencies in ASP.NET</title>
      <script runat="server">
         Sub Page_Load()
            Dim myArrayList As New ArrayList
            myArrayList.Add(Server.MapPath("d1.txt"))
            myArrayList.Add(Server.MapPath("d2.txt"))
            Response.AddFileDependencies(myArrayList)
            Message.Text = DateTime.Now()
         End Sub
      </script>
   </head>
<body>
   <asp:label id="Message" runat="server"/>
</body>
</html>
           
       








Related examples in the same category

1.Adding a file dependency (VB.net)