ASP编辑config.xml位置

时间:2013-04-20 12:17:02

标签: xml config

我最近接管了一个网站,并组织了这样的文件夹,所有我的包括不按顺序,但我设法改变这个。但其中一个asp页面无法在根文件夹中找到config.xml。

错误代码: Unable to load config file: 'The system cannot locate the object specified. ' (-2146697210)

我想我已经在.asp文件中找到了用于查找和加载配置的代码,但我不知道如何更改它以将其指向配置文件的新位置:

`Public Sub Load DefaultXML

    If IsNull(stPath) Then
        stPath = Server.MapPath("/")
        stPath = Left(stPath, InstrRev(stPath,"\", Len(stPath)-2))   & "config.xml"
    End If
    LoadXML stPath  
End Sub

我发现了一个与我有相同错误的帖子但是对于不同的功能,该帖子的解决方案是从以下位置安装最新的msxml6.dll: http://www.microsoft.com/en-gb/download/details.aspx?id=6276

现在,当我刷新时,我只得到一个白色的屏幕,没有加载内容,没有显示错误。

任何帮助都会非常有用!理解!

谢谢!

0 个答案:

没有答案