Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Form post syntax

    I would like to send data to both the database:
    <form action="<%=MM_editAction%>" method="post".......
    AND
    to a web page
    <form action="webpage.asp" method="post".......

    Is it possible to post to both? I suspect I don't have the correct syntax.

    montana_field2 Guest

  2. Similar Questions and Discussions

    1. redirect but with post data - mimick form post behaviour
      Any thoughts on how to mimic result of submitting form data via POST Method? I have some code that sanitizes some submitted formfields and i'd like...
    2. Property scope in Javascript Syntax [x-post]
      Hello everyone! I define a property with getPropertyDescriptionList() with code like this: function getPropertyDescriptionList(me) { var PDL =...
    3. How to post some data in form of POST action of forms in asp?
      Hi there, I need to post some information into an ASP page (mypage.asp), in form of POST action which I do with the following code: 'contents...
    4. correct syntax for memo field on website form
      Hi, I'm creating a website based on one of those awful generator WSYWYG editors, A site in ASP and VBscript, Now i've created a page to post...
    5. ASP, FORMS, POST METHOD And Post with out form(???)
      Lets see if I can decribe, this... I have a form on an html page, that will call a remote site with a post method. Prior to running off to the...
  3. #2

    Default Re: Form post syntax

    Do you jsut want to redirect after inserting/updating? If so use,

    Response.Redirect("URL")

    HTH,
    Drew

    "montana_field2" <webforumsuser@macromedia.com> wrote in message
    news:d3ol1g$dsm$1@forums.macromedia.com...
    >I would like to send data to both the database:
    > <form action="<%=MM_editAction%>" method="post".......
    > AND
    > to a web page
    > <form action="webpage.asp" method="post".......
    >
    > Is it possible to post to both? I suspect I don't have the correct
    > syntax.
    >

    Drew Guest

  4. #3

    Default Re: Form post syntax

    No, I just want to post to database and post to another webpage to provide receipt.
    thanks
    montana_field2 Guest

  5. #4

    Default Re: Form post syntax

    I don't quite understand your problem? Seems to me that you could capture
    all the variables in sessions, then post to the insert page to insert a
    record, then redirect after insertion to the receipt page and show your
    sessions.

    Would that do it?

    Drew

    "montana_field2" <webforumsuser@macromedia.com> wrote in message
    news:d3or15$mdp$1@forums.macromedia.com...
    > No, I just want to post to database and post to another webpage to provide
    > receipt.
    > thanks

    Drew Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139