Solved the problem. Hope this will help someone else...
After painfully investigating each bit of code (2.5 days so far), i realised that the POST was causing the problem.
So i changed from POST to GET
Code:
var poststr=createpoststring()
if (poststr != "")
{
ajaxpack.postAjaxRequest("example.htm", poststr, processGetPost, "txt")
}
to
Code:
var poststr=createpoststring()
if (poststr != "")
{
ajaxpack.getAjaxRequest("example.htm", poststr, processGetPost, "txt")
}
Solving the problem. Although i am sending data from a form, it is not a huge amount in data terms, and have tested it with upto 1000chrs, which is plenty for my purpose.
I am unsure what the POST is causing problems, but its not a problem for me to use GET, i realise this may not be an option in certain implementations.
Thanks
Jason
Bookmarks