Hi all,
is there any way i can send the parameter data instead
of concatinating all name of the element and value of
element in "url" below. I mean sort of like a submit
to post in which the receiving end will request as
request.form something... because what if i have
thousands of elements/parameters to send to
"ajax_validateMove.aspx", do i have to concatinate
them all with the varialble name "url"? Please help.
thanks.
url="ajax_validateMove.aspx" + toConCat;
http.open("GET", url, true);
isWorking = true;
http.onreadystatechange = function(){
if (http.readyState == 4) {
isWorking = false;
if (http.responseText.indexOf('invalid') == -1) {
isWorking = false;
}
if (http.responseText == "Valid"){
... do something
}
else{
... do somthing
}
}
}
http.setRequestHeader("If-Modified-Since", "Sat, 1 Jan
2000 00:00:00 GMT");
http.send();
________________________________________________________________________________\
__________
Check out the New Yahoo! Mail - Fire up a more powerful email and get things
done faster.
(http://advision.webevents.yahoo.com/mailbeta)