Hey i am using a 3rd Party Newsletter Tool which at the end gives me the html for the form to place on my site.
Basically looks like this
<form action="http://link/subscriber/subscribe.html" method="post">
<input name="subscribeBoxId" type="hidden" value="XXXX"/>
<input name="subscribeBoxTitle" type="hidden" value="Subscribe Box"/>
<input name="isExternal" type="hidden" value="true"/>
<input name="externalPublicationId" type="hidden" value="XXXX"/>
<b>Your details: <br /><br />
<input name="sf_name.firstName_required" value="true" type="hidden" /><br />
...
</form>
But I Wish to add my own validation before I submit it to that form on my ASP.NET page and then submit it to that URL, how can this be achieved cheers !