lösche mal den temp.dir (den Inhalt des Temp.dir)
da steht dieser script => sdata.xml, der ärger macht
C:\Dokumente und Einstellungen\BENUTZER\Lokale Einstellungen\Temp
Beispiel (
Response.Expires = -1
Dim sFilePath
Dim sData
Dim xml
' The path to the XML file
sFilePath = Server.Mappath("XMLHTTP.xml")
Set xml = Server.CreateObject("Microsoft.XMLDOM")
xml.async = False
' Load the XML file
xml.load sFilePath
' Collect the data from our document
sData = xml.documentElement.childNodes(0).text
' This is the line that returns the data to our object
on the client.
Response.Write sData
' Always, Always clean up!
Set XML = Nothing
)
gruß
mike
|