Custom Form Handler

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to pass variables in the Action Field.

Example: destination.asp?CMD="variable"
 
TBMK No
But if you add the field (CMD) as a hidden field (w/ a value in it) the field name/value will be passed

--




| Is there a way to pass variables in the Action Field.
|
| Example: destination.asp?CMD="variable"
 
Yes, but were is the variable coming from?
How about a hidden field?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
I would like to have option buttons on one screen. Based on the users choice,
and then pressing "Submit" The called asp page will determine what to do
based on input.
 
Requires custom written server-side script to process the form.

Basically, on your first page (the form), the user make select hit the submit button which will send
all input to the next page. On the next page (the process) your custom written code reads the input
value submitted and then does whatever you want to happen based on the value submitted.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Yes. The URL of the ACTION property of the form is a URL, which may contain
QueryString parameters. I have written ASP apps in the past which used both
Request.Form and Request.QueryString, with a form's ACTION property set
using a QueryString.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
 
Back
Top