0
New Here
,
/t5/dreamweaver-discussions/passing-form-variables-to-another-web-page/td-p/601931
Mar 10, 2007
Mar 10, 2007
Copy link to clipboard
Copied
I have a simple select parameter screen that calls another
web page. When I request the variable from the form in the detail
page (request.form("app_sts")), the values are always blank. I have
looked at this for hours and cannot get it to pass data. Can anyone
help? Thanks in advance. Steve
Attached is the code for the parameter program and the detail prgram:
Attached is the code for the parameter program and the detail prgram:
TOPICS
Server side applications
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Explorer
,
Mar 11, 2007
Mar 11, 2007
You have your form method set to POST. If you want to pass
variables, you have to change the method to GET.
<form id="tradeapproval" name="tradeapproval" method="get" action="Trade_Approval_Ticket.asp">
Cheers
Chuck
<form id="tradeapproval" name="tradeapproval" method="get" action="Trade_Approval_Ticket.asp">
Cheers
Chuck
Explorer
,
/t5/dreamweaver-discussions/passing-form-variables-to-another-web-page/m-p/601932#M171521
Mar 11, 2007
Mar 11, 2007
Copy link to clipboard
Copied
You have your form method set to POST. If you want to pass
variables, you have to change the method to GET.
<form id="tradeapproval" name="tradeapproval" method="get" action="Trade_Approval_Ticket.asp">
Cheers
Chuck
<form id="tradeapproval" name="tradeapproval" method="get" action="Trade_Approval_Ticket.asp">
Cheers
Chuck
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
da_riggy
AUTHOR
New Here
,
LATEST
/t5/dreamweaver-discussions/passing-form-variables-to-another-web-page/m-p/601934#M171523
Mar 11, 2007
Mar 11, 2007
Copy link to clipboard
Copied
Thanks Chuck, that was the answer. It always amazes me how
the solution can be staring you right in the face and you look
right past it thinking the problem should be so much more complex.
Regards,
Steve
Regards,
Steve
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
/t5/dreamweaver-discussions/passing-form-variables-to-another-web-page/m-p/601933#M171522
Mar 11, 2007
Mar 11, 2007
Copy link to clipboard
Copied
Post would be the way to do it with the request.form()
function, no?
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"chuckomalley" <webforumsuser@macromedia.com> wrote in message
news:et0hbj$sbt$1@forums.macromedia.com...
> You have your form method set to POST. If you want to pass variables, you
> have
> to change the method to GET.
>
> ><form id="tradeapproval" name="tradeapproval" method="get"
> action="Trade_Approval_Ticket.asp">
>
> Cheers
>
> Chuck
>
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"chuckomalley" <webforumsuser@macromedia.com> wrote in message
news:et0hbj$sbt$1@forums.macromedia.com...
> You have your form method set to POST. If you want to pass variables, you
> have
> to change the method to GET.
>
> ><form id="tradeapproval" name="tradeapproval" method="get"
> action="Trade_Approval_Ticket.asp">
>
> Cheers
>
> Chuck
>
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

