submit() QueryString data

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Serge Myrand

    submit() QueryString data

    Hi,

    Is there a way to append the QueryString data when using
    <Script>documen t.FrmName.submi t()</Script>


    Thank's in advance
    serge

  • Curt_C [MVP]

    #2
    Re: submit() QueryString data

    in the page load capture it and append it to the Action of the form tag

    --
    Curt Christianson
    Owner/Lead Developer, DF-Software
    Site: http://www.Darkfalz.com
    Blog: http://blog.Darkfalz.com


    "Serge Myrand" <info@softdelir ium.qc.ca> wrote in message
    news:40F67587.C 49EB2E8@softdel irium.qc.ca...[color=blue]
    > Hi,
    >
    > Is there a way to append the QueryString data when using
    > <Script>documen t.FrmName.submi t()</Script>
    >
    >
    > Thank's in advance
    > serge
    >[/color]


    Comment

    • Serge Myrand

      #3
      Re: submit() QueryString data

      Hi,

      I cannot find anything on page load or OnLoad. Are you talking about an
      event? .NET? Any example?

      thank's
      serge

      "Curt_C [MVP]" wrote:
      [color=blue]
      > in the page load capture it and append it to the Action of the form tag
      >
      > --
      > Curt Christianson
      > Owner/Lead Developer, DF-Software
      > Site: http://www.Darkfalz.com
      > Blog: http://blog.Darkfalz.com
      >
      > "Serge Myrand" <info@softdelir ium.qc.ca> wrote in message
      > news:40F67587.C 49EB2E8@softdel irium.qc.ca...[color=green]
      > > Hi,
      > >
      > > Is there a way to append the QueryString data when using
      > > <Script>documen t.FrmName.submi t()</Script>
      > >
      > >
      > > Thank's in advance
      > > serge
      > >[/color][/color]

      Comment

      • James Baker

        #4
        Re: submit() QueryString data

        He's referring to classic ASP...not .NET. If you're looking for a .NET
        solution, you're in the wrong newsgroup. If you're doing this with classic
        ASP, he means that you should utilize javascript to modify the action
        attribute of the form you are posting. Within the javascript function, you
        modify the append the querystring you want to the action attribute, then you
        can submit the form via javascript as well...and life is good.

        "Serge Myrand" <info@softdelir ium.qc.ca> wrote in message
        news:40F6CEBE.E 237AFB4@softdel irium.qc.ca...[color=blue]
        > Hi,
        >
        > I cannot find anything on page load or OnLoad. Are you talking about an
        > event? .NET? Any example?
        >
        > thank's
        > serge
        >
        > "Curt_C [MVP]" wrote:
        >[color=green]
        > > in the page load capture it and append it to the Action of the form tag
        > >
        > > --
        > > Curt Christianson
        > > Owner/Lead Developer, DF-Software
        > > Site: http://www.Darkfalz.com
        > > Blog: http://blog.Darkfalz.com
        > >
        > > "Serge Myrand" <info@softdelir ium.qc.ca> wrote in message
        > > news:40F67587.C 49EB2E8@softdel irium.qc.ca...[color=darkred]
        > > > Hi,
        > > >
        > > > Is there a way to append the QueryString data when using
        > > > <Script>documen t.FrmName.submi t()</Script>
        > > >
        > > >
        > > > Thank's in advance
        > > > serge
        > > >[/color][/color]
        >[/color]


        Comment

        • Curt_C [MVP]

          #5
          Re: submit() QueryString data

          simply
          <% here %> at the top of the page, so it's read/parsed FIRST.

          --
          Curt Christianson
          Owner/Lead Developer, DF-Software
          Site: http://www.Darkfalz.com
          Blog: http://blog.Darkfalz.com


          "Serge Myrand" <info@softdelir ium.qc.ca> wrote in message
          news:40F6CEBE.E 237AFB4@softdel irium.qc.ca...[color=blue]
          > Hi,
          >
          > I cannot find anything on page load or OnLoad. Are you talking about an
          > event? .NET? Any example?
          >
          > thank's
          > serge
          >
          > "Curt_C [MVP]" wrote:
          >[color=green]
          > > in the page load capture it and append it to the Action of the form tag
          > >
          > > --
          > > Curt Christianson
          > > Owner/Lead Developer, DF-Software
          > > Site: http://www.Darkfalz.com
          > > Blog: http://blog.Darkfalz.com
          > >
          > > "Serge Myrand" <info@softdelir ium.qc.ca> wrote in message
          > > news:40F67587.C 49EB2E8@softdel irium.qc.ca...[color=darkred]
          > > > Hi,
          > > >
          > > > Is there a way to append the QueryString data when using
          > > > <Script>documen t.FrmName.submi t()</Script>
          > > >
          > > >
          > > > Thank's in advance
          > > > serge
          > > >[/color][/color]
          >[/color]


          Comment

          Working...