Einzelnen Beitrag anzeigen
Alt 09.03.2004, 16:17   #6
Garmin196
Elite
 
Registriert seit: 06.09.2003
Alter: 77
Beiträge: 1.080


Standard

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
Garmin196 ist offline   Mit Zitat antworten