Recent windows update has caused problems with running of IE 6 .
A difference is detected prior to the machine restart and after that. This is to do with the HTML submit using form fields required by struts instead of explicitly including them in the querystring.
The code is like this, which worked till we restarted the machine after the last windows update&
document.forms[0].action=
someAction
.do;
document.forms[0].command=
doThis;
document.forms[0].submit()
;
Now, we need to explicitly set the full Struts Querystring in the action attribute
document.forms[0].action=
someAction
.do?comman
d=doThis;
document.forms[0].submit()
;
Is there any JavaScript security patch updated that impacts the style of submit in Struts?
Is it that we need to set the GET / POST method explicitly on the forms declaration?
Regards,
Ayan
Start Free Trial