Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Richard Grounds #1
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
-
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... -
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... -
winhttp passing values
Hello, I have the following structure, Form page My Server 2nd server html ---------->My.asp------->2server.asp User can... -
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... -
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"... -
Anthony Brown #2
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



Reply With Quote

