Hi!
See attentive...
var XMLHTTP = GetXMLHTTP();
if(XMLHTTP != null)
{
XMLHTTP.open("GET","default.aspx");
XMLHTTP.onreadystatechange = stateChanged; // SEE HERE!!!
onreadystatechangE (you write - onreadystatechangED). Correct.
XMLHTTP.send(null);
} //end if(XMLHTTP != null)
function stateChanged()
{
if(XMLHTTP.readyState == 4 && XMLHTTP.status == 200)
{
window.alert(XMLHTTP.responseText);
} //end if
}//end function stateChanged
}
zdrakec - 22 Jun 2007 15:12 GMT
On Jun 21, 10:46 pm, three-se...@yandex.ru wrote:
> Hi!
>
[quoted text clipped - 22 lines]
>
> - Show quoted text -
Well dammit. That is truly annoying, and convinces me that I'm getting
senile.
Thank you sir!
zdrakec