Here's how I do it:
HTML:
APS:Code:<input type=submit name=approve value=Approve>
<input type=submit name=deny value=Deny>
VB Code:
If (Request.Form("approve") = "Approve") Then ... Elseif (Request.Form("deny") = "Deny") Then ...
Printable View
Here's how I do it:
HTML:
APS:Code:<input type=submit name=approve value=Approve>
<input type=submit name=deny value=Deny>
VB Code:
If (Request.Form("approve") = "Approve") Then ... Elseif (Request.Form("deny") = "Deny") Then ...
Thanks...I'll try it as soon as I get a chance.
Chris