:: Forum >> Version 2 >>
can you give a JSP example for returning a reponse to AW.HTTP.Request
More information on this topic is available in the documentation section:
/aw.http.request/response.html.
var req = new AW.HTTP.Request;
req.setURL('abc.jsp');
req.response = function(text) {
alert(text); // do something with response here
};
req.request();
HOW WOULD THE abc.jsp CODE LOOK LIKE TO RETURN THE VALUE IN TEXT?
Thanks so much
Precidion
Saturday, November 10, 2007
This topic is archived.
Back to /aw.http.request/response.html
Documentation:
Forum search