Can I do something like this:
<form name="frm_agr" method="POST" action="someFile.asp">
<input type="submit" value="I AGREE" name="Agree"
onClick="myASPProcedure()">
</form>
<%
Sub myASPProcedure()
Dim Variables
go to a database and update fields
End Sub
%>
What I'm trying to do is that if a user agrees to my disclaimer and clicks "i agree" then I can immediately capture that from his/her mouse click and record it in my database
Thanks! How much more water would there be in the ocean if it weren't for sponges?
<form name="frm_agr" method="POST" action="someFile.asp">
<input type="submit" value="I AGREE" name="Agree"
onClick="myASPProcedure()">
</form>
<%
Sub myASPProcedure()
Dim Variables
go to a database and update fields
End Sub
%>
What I'm trying to do is that if a user agrees to my disclaimer and clicks "i agree" then I can immediately capture that from his/her mouse click and record it in my database
Thanks! How much more water would there be in the ocean if it weren't for sponges?