Okay ich versuchs mal zusammenzufassen. Da ich ja kaum Ahnung habe, einfach sagen, wenn euch was fehlt!
Delphi-Quellcode:
var ajaxpack = new Object()
ajaxpack.basedomain = "http://"+window.location.hostname
ajaxpack.ajaxobj = createAjaxObj()
ajaxpack.filetype = "txt"
und hier die function, von der ich glaube, dass da was passiert
Delphi-Quellcode:
ajaxpack.postAjaxRequest=function(Text, parameters, callbackfunc, filetype)
if(this.ajaxobj) {
this.filetype = filetype;
this.ajaxobj.onreadystatechange = callbackfunc;
this.ajaxobj.open('POST', Text, true);
this.ajaxobj.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
this.ajaxobj.setRequestHeader("Content-length", parameters.length);
this.ajaxobj.setRequestHeader("Connection", "close");
this.ajaxobj.send(parameters);
Wird hier aufgerufen:
ajaxpack.postAjaxRequest("index_p/", createpoststring(), processGetPost, "txt");
CreatePostString erstellt einfach nur den String für die Funktion.
MfG
lowF
Edit: Keine AGB auf der Website angegeben!