Ask Experts Questions for FREE Help!
 

Free Answers in 3 Easy Steps

Register Now
3 Steps
 


Ask QuestionsprogressAnswer QuestionsprogressBuild ReputationprogressBecome an Expert
 
At Ask Me Help Desk you can ask questions in any topic and have them answered for free by our experts. To ask questions or participate in answering them you must register for a free account. By registering you will be able to:
  • Get free answers from experts in any of our 300+ topics.
  • Accept money for answers that you provide.
  • Communicate privately with other members (PM).
  • See fewer ads.
  Answer this question    Ask about HTML    Ask about another Subject  
 

OzWaz
Aug 9, 2009, 12:46 PM
I am having difficulty in getting a form to function on my website. I have used forms previously, on websites, but for some reason, the code that has successfully worked in the past will now not operate successfully.

Here is the code I am currently using after getting some limited advice from my ISP.

[<form action="../_gdForm/webformmailer.asp" method="post" name="Listing" enctype="multipart/form-data"><input type="hidden" name="redirect" value="/Documents/thankyou.htm">]

Here is the results that I get.

[“No variables sent to form! Unable to process request.”]

And here is the URL for the site, with the form is located.

[http://www.mackaycity.com/documents/listing.htm]

Could somebody please help me to rectify this situation.

Thank you

crigby
Aug 12, 2009, 07:29 PM
Hi,
First you should not put in brackets, the closing one gets attached to the URL and gives a 404.
Once I realized that, I got there and saw nothing unusual. My guess is that the of address your program to process it is wrong. Check the directory of the program.
Peace,
Clarke

OzWaz
Aug 28, 2009, 01:52 PM
Thanks for the help.

what do you men by "address your program to process" and "Check the directory of the program"

this is all new stuff to me

crigby
Aug 30, 2009, 11:20 AM
Hi,
It is all in the form action part with the address and path of the program that accepts the Post:
"../_gdForm/webformmailer.asp"
The 2 dots and slash move the place looked in up one directory level, the _gdform directory is looked down into there for the webformmailer.asp program to process. If these are not the correct path, it will fail.
Peace,
Clarke