Ingrid: formular sction

Hallo

ich habe ein Formular, in der action rufe ich eine anderes asp-File auf. Nun moechte ich diesem Aufruf noch eine Variable anhaengen.
Ich stelle mir das ungefaehr so vor:

<form name="Test" action="seite2.asp?var1=" + <%=var1%>>

Nur leider funktioniert das nicht. Kann mir da jemand helfen?

Gruss
Ingrid

  1. Hi,

    Nun moechte ich diesem Aufruf noch eine Variable anhaengen.

    es existiert kein Weg, per HTTP Variablen zu übertragen. Es gibt jedoch Parameter.

    Nur leider funktioniert das nicht.

    "Funktioniert nicht" funktioniert nicht. Fehlerbeschreibung, bitte. An versteckte Eingabefelder hast Du gedacht?

    Cheatah

    --
    X-Will-Answer-Email: No
  2. <form name="Test" action="seite2.asp?var1=" + <%=var1%>>

    Deine method fehlt noch, also z.B. method="post".

    Nur leider funktioniert das nicht. Kann mir da jemand helfen?

    Du kannst weitere Variablen per hidden fields verschicken.
    z.B. <input type="hidden" name="var1" value="<%=var1%>"> so.

    Gruss AndreD

    1. Hi,

      Deine method fehlt noch, also z.B. method="post".

      http://www.w3.org/TR/html401/interact/forms.html#edef-FORM:
      <!ELEMENT FORM - - (%block;|SCRIPT)+ -(FORM) -- interactive form -->
      <!ATTLIST FORM
        %attrs;                              -- %coreattrs, %i18n, %events --
        action      %URI;          #REQUIRED -- server-side form handler --
        method      (GET|POST)     GET       -- HTTP method used to submit the form--
      [...]
        >

      Cheatah

      --
      X-Will-Answer-Email: No
      1. Hallo,

        <!ELEMENT FORM - - (%block;|SCRIPT)+ -(FORM) -- interactive form -->
        <!ATTLIST FORM
          %attrs;                              -- %coreattrs, %i18n, %events --
          action      %URI;          #REQUIRED -- server-side form handler --
          method      (GET|POST)     GET       -- HTTP method used to submit the form--
        [...]
          >

        Ich weiss jetzt im Moment nicht genau auf was sich Dein Hinweis bezieht, evt. auf diesen Absatz der darunter steht:

        ...get: With the HTTP "get" method, the form data set is appended to the URI specified by the action attribute (with a question-mark ("?") as separator) and this new URI is sent to the processing agent...<

        Meinst Du das Sie method=get verwenden soll weil Sie die Werte an die URI anhängen möchte? Berichtige mich bitte, falls ich noch auf dem Schlach stehe...

        Mahlzeit mal,
        Gruss Andre

        1. Hi,

          Ich weiss jetzt im Moment nicht genau auf was sich Dein Hinweis bezieht,

          auf Deine Behauptung, das method-Attribut würde fehlen.

          Meinst Du das Sie method=get verwenden soll

          Nein, sondern dass sie es tut.

          Cheatah

          --
          X-Will-Answer-Email: No
          1. Nein, sondern dass sie es tut.

            Ok, ist klar jetzt, danke.

            AndreD

  3. Hallo

    <form name="Test" action="seite2.asp?var1=<%=var1%>">

    Gruß Burkhard