Ok I have a work around to this, which works 100% of the time so far:
For a simple example, in javascript instead of:
startForm.submit();
I now will just write:
var projectID = document.startForm.taskID.
document.location.href ="startTask.jsp?taskID="+t
This solution will not work where we have a dynamic number of parameters, so in those cases we still just submit the form. So some input if anybody has any would be great.
FORM:
Main Topics
Browse All Topics





by: tmorvPosted on 2009-10-27 at 06:34:52ID: 25672194
Just an update on this:
When I send and empty form, the page is found fine.
When I send a form with inputs it will crash with the error, if I i click back (in the browser) and send again it works.
So it is something to do with hidden input fields in a form? I'm looking into this further.