
24/03/2002, 14:45
|
 | | | Fecha de Ingreso: enero-2002 Ubicación: San Jose
Mensajes: 679
Antigüedad: 23 años, 3 meses Puntos: 0 | |
Re: INCLUDE DINAMICO, como se hace <%
Function getFileContents(strIncludeFile)
Dim objFSO
Dim objText
Dim strPage
Set objFSO = Server.CreateObject("Scripting.FileSystemObje ct")
Set objText = objFSO.OpenTextFile(Server.MapPath(strIncludeFile) )
getFileContents = objText.ReadAll
objText.Close
Set objText = Nothing
Set objFSO = Nothing
End Function
%> |