Results 1 to 2 of 2

Thread: Form Action

  1. #1

    Thread Starter
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    Here's how I do it:

    HTML:
    Code:
    <input type=submit name=approve value=Approve>
    <input type=submit name=deny value=Deny>
    APS:
    VB Code:
    1. If (Request.Form("approve") = "Approve") Then
    2. ...
    3. Elseif (Request.Form("deny") = "Deny") Then
    4. ...
    Josh
    Get these: Mozilla Opera OpenBSD
    I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.

  2. #2
    Fanatic Member vb_dba's Avatar
    Join Date
    Jun 2001
    Location
    Somewhere aloft between the real world and insanity
    Posts
    1,016
    Thanks...I'll try it as soon as I get a chance.

    Chris

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width