S
SBC Global
Hi All,
I have 3 files I am using, Index.html, Test.asp, MyNewpage.html.
I am try to load MyNewPage.html into Test.asp.
Index.html has a link as follows:
<a href="test.asp?np=mynewpage.htm">My Link</a>
Here is what I have in test.asp:
<html>
<head>
<title>Test Page</title>
</head>
<body>
<%
Dim newpage
newpage = request.querystring("np")
server.execute newpage
%>
</body>
</html>
What i keep getting is an error, page cannot be found.
I have tried using fully qualified names and still get an error.
Any help would be appreciated.
TIA
Steve Karnath
I have 3 files I am using, Index.html, Test.asp, MyNewpage.html.
I am try to load MyNewPage.html into Test.asp.
Index.html has a link as follows:
<a href="test.asp?np=mynewpage.htm">My Link</a>
Here is what I have in test.asp:
<html>
<head>
<title>Test Page</title>
</head>
<body>
<%
Dim newpage
newpage = request.querystring("np")
server.execute newpage
%>
</body>
</html>
What i keep getting is an error, page cannot be found.
I have tried using fully qualified names and still get an error.
Any help would be appreciated.
TIA
Steve Karnath