Hi,
I need some suggestions from you experts. I am disabling my submit button when it is clicked once to avoid double submission, but by doing this it's value is not passing to action bean. Please suggest me.
This is javascript code
function doSubmit(submitValue,btnName) {
document.forms[0].strSubmit.value = submitValue;
document.forms[0].submit();
btnName.disabled = true;
alert(document.forms[0].strSubmit.value)
}
alert in my function gives me the exact value but it is not reaching there. I did these for 4,5
JSP's but its not working only for one JSP only. Please suggest me. It's really urgernt for me
[ October 23, 2005: Message edited by: Bear Bibeault ]