> > Thank you Anthony. You're my hero. Wasn't so hard after all. For those > following, I did it by putting the response.js in myonaccept(form) > function and then, the last thing to do in that function is > > HTTP(303,SCRIPT(response.js)) >
Typically, a 303 response would also set a "Location" header to tell the browser where to redirect. In this case, you probably just want to return a 200 status code (or is it supposed to redirect somewhere?). Anthony

