two html forms

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • sumithradevi@hotmail.com

    two html forms

    Hello Friends,
    I have two forms(form1 and form2) on my html page.
    question1 : can i access form 1 variables in form 2?. if so how?

    question 2: when form2 action is saveci.jsp . can i access form1
    variables in saveci.jsp. if so how?.

    basically when form2 is submitted, form1 variables should be accessed
    in the jsp which processes form2.

    Thanks for the help!!!
    s
  • Jerry Park

    #2
    Re: two html forms

    sumithradevi@ho tmail.com wrote:[color=blue]
    > Hello Friends,
    > I have two forms(form1 and form2) on my html page.
    > question1 : can i access form 1 variables in form 2?. if so how?
    >
    > question 2: when form2 action is saveci.jsp . can i access form1
    > variables in saveci.jsp. if so how?.
    >
    > basically when form2 is submitted, form1 variables should be accessed
    > in the jsp which processes form2.
    >
    > Thanks for the help!!!
    > s[/color]
    If you saveci.jsp needs the information in both forms, why not use a
    single form?

    Comment

    • Lasse Reichstein Nielsen

      #3
      Re: two html forms

      sumithradevi@ho tmail.com writes:
      [color=blue]
      > I have two forms(form1 and form2) on my html page.
      > question1 : can i access form 1 variables in form 2?. if so how?[/color]

      In HTML there are no variables. In Javascript, you can access anything
      on the page from anywhere else. So yes. Example of how:

      <form id="form1"> ... <input name="foo" value="42">... </form>
      <form id="form2"> ... <input name="bar">
      <input type="button" value="copy"
      onclick="this.f orm.elements['bar'].value =
      document.forms['form1'].elements['foo'].value;">
      ...
      </form>

      [color=blue]
      > question 2: when form2 action is saveci.jsp . can i access form1
      > variables in saveci.jsp. if so how?.[/color]

      No. When submitting a form, only the named form controls of that
      form is sent to the server.
      [color=blue]
      > basically when form2 is submitted, form1 variables should be accessed
      > in the jsp which processes form2.[/color]

      Then you need to make it only one form. It is not that bad, you can
      have different submit buttons to make people believe they send separate
      forms:

      <form id="megaform" action="saveci. jsp" method="post">
      <fieldset><lege nd>What looks like form 1</legend>
      ...
      <input type="submit" name="submit1" value="Submit Form 1">
      </fieldset>
      <fieldset><lege nd>What looks like form 2</legend>
      ...
      <input type="submit" name="submit2" value="Submit Form 2">
      </fieldset>
      </form>

      The name of the submit button that is used to submit the form is then
      passed to the server along with the form data.

      If you need the two forms to go to different pages, I suggest you
      make an interface page that gets all the input, splits it as needed,
      and switch to the real page. I don't know JSP, so I can't help you
      with the details.

      /L
      --
      Lasse Reichstein Nielsen - lrn@hotpop.com
      DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
      'Faith without judgement merely degrades the spirit divine.'

      Comment

      Working...