I am having a hard time creating a navigation menu using ssi. Here is an example of the problem:
I have a default page (default.asp) in a root directory. I have an "includes" folder in this directory with my includes in them. At the same level, I have an "about_us" folder with an "about_us.asp" page and a "content.asp" page in there.
The site opens just fine but when I click on the "About Us" menu item I get an error. There is almost nothing in any of my content.asp pages so there is no error there.
Here is what the code in the default page looks like (this works fine):
Here is what the code in the about_us.asp page looks like (this generates an "Internal Server Error" message):
Any help would be much appreciated!
Thanks~
Bobba Buoy
Just trying to make sense of it all ...
I have a default page (default.asp) in a root directory. I have an "includes" folder in this directory with my includes in them. At the same level, I have an "about_us" folder with an "about_us.asp" page and a "content.asp" page in there.
The site opens just fine but when I click on the "About Us" menu item I get an error. There is almost nothing in any of my content.asp pages so there is no error there.
Here is what the code in the default page looks like (this works fine):
Code:
<!--#include file = "includes/header.asp" -->
<!--#include file = "includes/menu.asp" -->
<!--#include file = "includes/content.asp" -->
<!--#include file = "includes/footer.asp" -->
Here is what the code in the about_us.asp page looks like (this generates an "Internal Server Error" message):
Code:
<!--#include virtual = "../includes/header.asp" -->
<!--#include virtual = "../includes/menu.asp" -->
<!--#include file = "content.asp" -->
<!--#include virtual = "../includes/footer.asp" -->
Any help would be much appreciated!
Thanks~
Bobba Buoy
Just trying to make sense of it all ...