I have a form that simply requires a user to enter
their email address.
<form name="myname" method="post" action="log.asp">
<input type="text" name="email">
<input type="submit" name="btnSubmit" value="submit">
</form>
Is there anyway to hide the action of this form so that it cannot be bombed with false email addresses that will be logged to the db. I am open to any solution be it HTML, Javascript or a client side scripting solution, ASP would be preferred in the final instance.
Thanks,
Naoise