Error on db results .aspx page using GoDaddy

  • Thread starter Thread starter Kadingas
  • Start date Start date
K

Kadingas

I get the below error on a simple .aspx db results page that's pointing
to an Access database.

Parser Error Message: Cannot use a leading .. to exit above the top
directory.

on this line. Any ideas?

Line 3: <%@ Page
Inherits="Microsoft.Office.FrontPage.DBInterface.DBInterfacePage"
Src="/../../_fpclass/fpdbnet.cs" Language="C#"%>

page that creates the error
http://www.sdlifecycle.com/products/products.aspx

Thanks
Darren
 
If products folder is not a FP subweb, then
try:
<%@ Page Inherits="Microsoft.Office.FrontPage.DBInterface.DBInterfacePage"
Src="/_fpclass/fpdbnet.cs" Language="C#"%>

or

<%@ Page Inherits="Microsoft.Office.FrontPage.DBInterface.DBInterfacePage"
Src="../_fpclass/fpdbnet.cs" Language="C#"%>
 
Thanks. I tried that and about 20 other combinations including moving
the file to the root directory with no luck. It must be a setting they
have on the server. Any idea on how I can hard code the entire path? I
don't know how to do this since its on a godaddy server.
 
Back
Top