nested forms

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Michael Hill

    nested forms

    Is it possible to have nested forms?

    <form name="form1" method="post" action="pgm1">
    <input type="text1">
    <form name="form2" method="post" action="pgm2">
    <input type="text2">
    <input type="submit" value="submit form2">
    </form>
    <input type="submit" value="submit form1">
    </form>

    and when form1 is submitted action is agaisnt pgm1 with vars from from1
    and when form2 is submitted action is against pgm2 with vars from form2


  • Jukka K. Korpela

    #2
    Re: nested forms

    Michael Hill <hillmw@ram.lmt as.lmco.com> wrote:
    [color=blue]
    > Is it possible to have nested forms?[/color]

    No, the HTML syntax explicitly forbids them.
    [color=blue]
    > and when form1 is submitted action is agaisnt pgm1 with vars from
    > from1 and when form2 is submitted action is against pgm2 with vars
    > from form2[/color]

    No, you need to use a single form with two submit buttons and to set up
    the server-side form handler so that it recognizes which button was
    used and branches accordingly.

    --
    Yucca, http://www.cs.tut.fi/~jkorpela/
    Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

    Comment

    • Darin McGrew

      #3
      Re: nested forms

      Michael Hill <nospamhillmw@r am.lmtas.lmco.c om> wrote:[color=blue]
      > Is it possible to have nested forms?[/color]

      No.

      But it is possible to have a single form with multiple submit buttons, and
      a server-side (e.g., CGI) program that does different things depending on
      what submit button was used.

      See also http://www.htmlhelp.com/faq/html/forms.html#two-submit
      --
      Darin McGrew, mcgrew@stanford alumni.org, http://www.rahul.net/mcgrew/
      Web Design Group, darin@htmlhelp. com, http://www.HTMLHelp.com/

      "There is no right way to do the wrong thing."

      Comment

      Working...