我在同一个文件夹中有两个文件,例如:
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;" & _
"PWD=myPassword;DATABASE=myDatabasename"
'create an instance of the ADO connection and recordset objects
Set Connection = Server.CreateObject("ADODB.Connection")
'Open the connection to the database
Connection.Open ConnString
%>
和 default.asp 包含:
<!-- #include virtual="connect.asp" -->
<%
Dim Recordset
Set Recordset = Server.CreateObject("ADODB.Recordset")
%>
但是当我运行 localhost/example 我得到一个错误:
处理 URL 时服务器发生错误。请联系系统管理员。如果您是系统管理员,请单击此处了解有关此错误的更多信息。
如果我不使用包含文件,并将其全部写入一个文件,那么它可以工作。
如何修复此错误?