HttpResponse.AddFileDependencies Method (String())
Adds an array of file names to the collection of file names on which the current response is dependent.
Assembly: System.Web (in System.Web.dll)
'Declaration Public Sub AddFileDependencies ( _ filenames As String() _ ) 'Usage Dim instance As HttpResponse Dim filenames As String() instance.AddFileDependencies(filenames)
Parameters
- filenames
- Type: System.String()
An array of files to add.
The following example adds an array of file names to the AddFileDependencies file dependency list. If the files changes, the cached response is invalidated.
<%@ Page Language="VB" %> <%@ Import namespace="System.IO" %> <script runat="server"> Sub Page_Load() Dim FileNames(2) As String FileNames(0) = "Test.txt" FileNames(1) = "Test2.txt" FileNames(2) = "Test3.txt" Response.AddFileDependencies(FileNames) Response.Write("File Dependencies sucessfully added!") End Sub </script>
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.