Swapnil Patil wrote:
Hi,
I modify my Javascript like follows:
function goURL(tmp){
document.forms[0].action=eval("/Log/log.do?action=First");
document.forms[0].submit();
}
Is eval really needed? . Check whether you really need /Log in
contexet path?
Try wih following function.
function goURL(tmp){
document.forms[0].action="/log.do?action=First";
document.forms[0].submit();
}
Hmm. Why the "action" has to be inserted to the url in the first place?
Can't the log.do retrieve in as getAction() in the execute? It's the value
of the combobox and should be readable from the form bean.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]