很抱歉,如果这个问题在其他地方得到了回答,但我尝试搜索了几个页面,但没有成功。
所以我有一个在所有页面中使用的包含文件(侧边栏)。
Default.asp
Products.asp
Salary/Survey.asp
inc/sidebar.asp (this is the included file)
现在,在sidebar.asp中,我有了一个Salary/Survey.asp链接
在根级别的所有其他页面中,我只需使用href='Salary/Survey.asp',就可以正常工作。但是当我在Survey.asp页面上时,编写href='Salary/Survey.
我在同一个文件夹中有两个文件,如下所示:
Example
|-connect.asp
|-default.asp
connect.asp包含:
<%
'declare the variables
Dim Connection
Dim ConnString
'define the connection string, specify database driver
ConnString="DRIVER={SQL Server};SERVER=myServername;UID=myUsername;" &
我正在尝试在Visual 2013和IIS 上运行ASP经典应用程序。在运行页面时,我得到了以下错误:
Active Server Pages error 'ASP 0131'
Disallowed Parent Path
../..
The Include file '../file.inc' cannot contain '..' to indicate the parent directory.
我在网上研究了这个问题,发现这个问题与默认禁用的./有关。提出的解决方案是允许允许父路径。虽然出于安全原因,这个解决方案是不鼓励的,但是我没有进行