can you give a JSP example for returning a reponse to AW.HTTP.Request
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
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
November 10,