I have enter the following code in VBsrcipt in Frontpage
The Following works fine
Sub Window_OnLoad()
Dim xmlDoc, xmlTeXt
set xmldoc = CreateObject("Microsoft.XMLHTTP")
xmldoc.open "GET","
xmldoc.send()
xmlText=xmlDoc.responseText
document.write(xmlText)
end sub
But when I try to open a document i our own server I get permission denied. I have used my own password and username and password for administrator
In connection with this I can mention that the file I am trying to access is on the same domain as the file I shold bee showed in. The Domain I also trusted in IE and security settings are low. And I still get permission denied went I try to access the file. How that be
The Following works fine
Sub Window_OnLoad()
Dim xmlDoc, xmlTeXt
set xmldoc = CreateObject("Microsoft.XMLHTTP")
xmldoc.open "GET","
xmldoc.send()
xmlText=xmlDoc.responseText
document.write(xmlText)
end sub
But when I try to open a document i our own server I get permission denied. I have used my own password and username and password for administrator
In connection with this I can mention that the file I am trying to access is on the same domain as the file I shold bee showed in. The Domain I also trusted in IE and security settings are low. And I still get permission denied went I try to access the file. How that be