Hi All
I am using ajax as follows:
var parameters = "groups=" + escape(myemail+ 100@gmail.com);
var url="/mydomain/ajaxCall";
if (req != null) {
req.open("POST" , url, true);
req.setRequestH eader("Content-type", "applicatio n/x-www-form-
urlencoded");
req.send(parame ters);
req.onreadystat echange=process Resp2;
}
I noticed that inside the ajaxCall the plus (+) sign is replaced with
a space in the string escaped (myemail 100@gmal.com)
Could someone tell me how to do this correctly?
Thanks
I am using ajax as follows:
var parameters = "groups=" + escape(myemail+ 100@gmail.com);
var url="/mydomain/ajaxCall";
if (req != null) {
req.open("POST" , url, true);
req.setRequestH eader("Content-type", "applicatio n/x-www-form-
urlencoded");
req.send(parame ters);
req.onreadystat echange=process Resp2;
}
I noticed that inside the ajaxCall the plus (+) sign is replaced with
a space in the string escaped (myemail 100@gmal.com)
Could someone tell me how to do this correctly?
Thanks
Comment