Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Requesting the name of a form 1

Status
Not open for further replies.

Ovatvvon

Programmer
Feb 1, 2001
1,514
0
0
US
Rather than form elements, is it possible to request the actual form name of the form being submitted to a page? Or rather, not "is it possible", but, "what is the code to request the form's name property"? :)

-Ovatvvon :-Q
 
may be you could use a hidden field and store the name of the form and retrive it like the usual form field...

<input type="text" name="blah" value="formname">

then you can just do:

request.form("blah")

-DNG
 
did this work for you or did you find any other way of doing this...

-DNG
 
I was really hoping for another way, but this works. Sorry, I forgot to come back because I was caught up in a bunch of stuff. Star for your help.

-Ovatvvon :-Q
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top