submit form help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Robert Smith
    New Member
    • Sep 2006
    • 3

    submit form help

    I am trying to use a submit form at no luck. When you hit submit and check the mail it doesent come. Here is the code please help



    <form method="POST" action="--WEBBOT-SELF--">
    <!--webbot bot="SaveResult s" S-Email-Format="TEXT/PRE" S-Email-Address="recsou rce@whereplayma tters.com" B-Email-Label-Fields="TRUE" S-Builtin-Fields -->
    <dl>
    <dd>&nbsp;</dd>
    </dl>
    <div style="position : absolute; width: 252px; height: 87px; z-index: 1; left: 50px; top: 281px" id="layer1">
    Installation Type
    <p><input type="radio" name="MessageTy pe" value="Commerci al" checked>Commerc ial&nbsp;&nbsp; &nbsp;&nbsp;&nb sp;&nbsp;&nbsp;
    <input type="radio" name="MessageTy pe" value="Resident ial">Residentia l</div>
    <p>&nbsp;</p>
    <dl>
    <dd>&nbsp;<di v style="position : absolute; width: 100px; height: 190px; z-index: 2; left: 4px; top: 380px" id="layer2">
    Comments
    <p><textarea name="Comments" rows="9" cols="37"></textarea></div>
    </dd>
    </dl>
    <p>&nbsp;</p>
    <dl>
    <dd>
    <div style="position : absolute; width: 308px; height: 336px; z-index: 3; left: 5px; top: 26px" id="layer3">
    Contact Information<dl>
    <dd>
    <table>
    <tr>
    <td>Name</td>
    <td>
    <input type="text" size="29" maxlength="256" name="Name0"></td>
    </tr>
    <tr>
    <td>Address</td>
    <td>
    <input type="text" size="29" maxlength="256" name="Addressl0 "></td>
    </tr>
    <tr>
    <td>City</td>
    <td>
    <input type="text" size="29" maxlength="256" name="City0"></td>
    </tr>
    <tr>
    <td>State&nbsp; &nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;
    </td>
    <td>
    <input type="text" size="29" maxlength="256" name="State0"></td>
    </tr>
    </table>
    <table width="297">
    <tr>
    <td width="52">Zip& nbsp;&nbsp;&nbs p;&nbsp;&nbsp;& nbsp;&nbsp;&nbs p;&nbsp;
    </td>
    <td>
    <input type="text" size="29" maxlength="256" name="Zip1"></td>
    </tr>
    <tr>
    <td width="52">Phon e</td>
    <td>
    <input type="text" size="29" maxlength="256" name="Phone1"></td>
    </tr>
    <tr>
    <td width="52">Fax& nbsp;&nbsp;&nbs p;&nbsp;&nbsp;& nbsp;&nbsp;&nbs p;&nbsp;&nbsp;
    </td>
    <td>
    <input type="text" size="29" maxlength="256" name="Fax1"></td>
    </tr>
    <tr>
    <td width="52">Emai l&nbsp;&nbsp;&n bsp;&nbsp;&nbsp ;&nbsp;
    </td>
    <td>
    <input type="text" size="29" maxlength="256" name="Email1"></td>
    </tr>
    </table>
    </dd>
    </dl>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</div>
    &nbsp;</dd>
    </dl>
    <div style="position : absolute; width: 298px; height: 33px; z-index: 4; left: 8px; top: 591px" id="layer4">
    <p align="center"> <input type="submit" value="Submit"> &nbsp;&nbsp;&nb sp;&nbsp;&nbsp; &nbsp;&nbsp;
    <input type="reset" value="Clear Form"></div>
    <p>&nbsp;</p>
    </form>
    <h5>&nbsp;</h5>
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    Looks to me this code is created using a package such as Frontpage or alike.
    This form is submitted to a routine named WEBBOT SELF. These webbot inclusions are usually also created by your webpage program. You probably made an error in one of that program's form definitions.
    [HTML]<form method="POST" action="--WEBBOT-SELF--">[/HTML]
    Since that routine most probably does not exist, submission will give you a 404 error. You need the routine specified in the "action=" attribute of the form statement to handle the form.

    Ronald :cool:

    Comment

    • Robert Smith
      New Member
      • Sep 2006
      • 3

      #3
      Originally posted by ronverdonk
      Looks to me this code is created using a package such as Frontpage or alike.
      This form is submitted to a routine named WEBBOT SELF. These webbot inclusions are usually also created by your webpage program. You probably made an error in one of that program's form definitions.
      [HTML]<form method="POST" action="--WEBBOT-SELF--">[/HTML]
      Since that routine most probably does not exist, submission will give you a 404 error. You need the routine specified in the "action=" attribute of the form statement to handle the form.

      Ronald :cool:
      Thank You so much that helped alot

      Comment

      Working...