Hi,
May I know how to totally disable a submit button after a user click on it.This means that even after his next visit,once he submitted the form on his previous visit, he could not submit it again.By the way I am using session too.So far ,I have researched online and found this code: document.getElementById('Submit').disabled=true.
This disabled the button when clicking on it but after refrshing/the user when back to the same link on his next visit, the submit button is still enable.I have tried onsubmit too.But it's not working. Any suggestion? Thanks.