R
Ragnar
In myPage.asp I am calling a function which is stored in an
include-asp-file. Unfortunately I get an empty screen
myPage.asp:
............
<!--#include virtual="include.asp" -->
<% Call DisplayNavigation() %>
...........
include.asp:
<%
Function DisplayNavigation()
set xmlDoc=CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("note.xml")
response.write xmlDoc.xml
End Function
%>
all 3 files are stored in same folder
include-asp-file. Unfortunately I get an empty screen
myPage.asp:
............
<!--#include virtual="include.asp" -->
<% Call DisplayNavigation() %>
...........
include.asp:
<%
Function DisplayNavigation()
set xmlDoc=CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("note.xml")
response.write xmlDoc.xml
End Function
%>
all 3 files are stored in same folder