betweenGo

ATG forms do not work if action is an HTML page

by on Aug.08, 2005, under Form Handlers, Page Development

When creating forms that are to interact with ATG form handlers, one cannot use an HTML page as the action. If one does then the ATG form handler will not be invoked.

For example, this form will not invoke the ATG form handler.

<form name="test" action="test.html" method="get">
  Name: <input type="text" bean="/TestFormHandler.name">
  <p><input type="submit" bean="/TestFormHandler.submit">
</form>

However this form will.

<form name="test" action="test.jhtml" method="get">
  Name: <input type="text" bean="/TestFormHandler.name">
  <p><input type="submit" bean="/TestFormHandler.submit">
</form>


Share

Related posts:

  1. Internet Explorer form does not invoke ATG handler
  2. Submitting an ATG Form Using a Text Link
  3. Submitting a form with a radio button
  4. Forwarding instead of Redirecting in Form Handlers
  5. ATG does not allow property values with commas for String[] properties

:

Leave a Reply

 

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!