Passing Form Values after DB Insert - How?

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

  1. #1

    Default Re: Passing Form Values after DB Insert - How?

    Hi Carl,

    I'm using your approach below:

    In the Insert script, find the Redirect URL code, and add after the ("") +
    "Name=" + Request.Form("Name) + "Email=" + Request.Form("EMail")...

    I'm getting errors - missing ';' ect - could you be more specific if possible,
    here is my code:

    // *** Insert Record: set variables

    if (String(Request("MM_insert")) == "man_reg") {
    var MM_editConnection = MM_SBP_STRING;
    var MM_editTable = "rajg.sbp_reg";
    var MM_editRedirectUrl = "man_reg_thankyou_test.asp"+ "Name=" +
    Request.Form("Name) + "Email=" + Request.Form("EMail");
    var MM_fieldsStr = .....

    Thanks - Justin

    Richard Grounds Guest

  2. Similar Questions and Discussions

    1. flex passing values
      I am new to flex and want to design a search page: Basically once user gives his input, the search page should go away and teh results should...
    2. Passing Values in Flash
      Is there a way to pass values into a .swf gauge? Bascially what I have is a flash gauge from 0-100. I am exporting the value out using XML to my...
    3. winhttp passing values
      Hello, I have the following structure, Form page My Server 2nd server html ---------->My.asp------->2server.asp User can...
    4. passing php form values to a Paypal cart
      Hi, Ok. I have a script which produces output of the form domianname.tld along with a checkbox. There may be up to 5 or six of these if the...
    5. passing through values
      Hello i wanna pass through the value model like this <form method="get" action="meeet.htm"> <div align="center">Nummer: <input type="input"...
  3. #2

    Default Re: Passing Form Values after DB Insert - How?

    If you are using this exact code, you are missing a " in the Request.Form("Name) part of the statement

    "Name=" +
    Request.Form("Name") + "Email=" + Request.Form("EMail");

    "Richard Grounds" <webforumsuser@macromedia.com> wrote in message news:d34ujt$8ql$1@forums.macromedia.com...
    > Hi Carl,
    >
    > I'm using your approach below:
    >
    > In the Insert script, find the Redirect URL code, and add after the ("") +
    > "Name=" + Request.Form("Name) + "Email=" + Request.Form("EMail")...
    >
    > I'm getting errors - missing ';' ect - could you be more specific if possible,
    > here is my code:
    >
    > // *** Insert Record: set variables
    >
    > if (String(Request("MM_insert")) == "man_reg") {
    > var MM_editConnection = MM_SBP_STRING;
    > var MM_editTable = "rajg.sbp_reg";
    > var MM_editRedirectUrl = "man_reg_thankyou_test.asp"+ "Name=" +
    > Request.Form("Name) + "Email=" + Request.Form("EMail");
    > var MM_fieldsStr = .....
    >
    > Thanks - Justin
    >
    Anthony Brown 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