I have some code:
if not isempty(Request.form("Submit"
) then
do code
end if
This works if the user clicks on the submit button but not if they hit the enter key.. Is there a way around this so that it will always run that code in the if statement if they click on the submit or hit the enter key? Thank you.
if not isempty(Request.form("Submit"
do code
end if
This works if the user clicks on the submit button but not if they hit the enter key.. Is there a way around this so that it will always run that code in the if statement if they click on the submit or hit the enter key? Thank you.