Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

pass data to another form AND database?

New Here ,
May 01, 2006 May 01, 2006
Using ASP-VBscript I can easily pass form data to a database and I can pass it to another form. How do I pass it to BOTH when Submit is clicked?

Thanks.
TOPICS
Server side applications
407
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 01, 2006 May 01, 2006
You do it exactly the same way as the separate items, you just need to
combine the operation.

--
Paul Whitham
Certified Dreamweaver MX2004 Professional
Adobe Community Expert - Dreamweaver

Valleybiz Internet Design
www.valleybiz.net

"TomHuffman" <webforumsuser@macromedia.com> wrote in message
news:e35opv$neh$1@forums.macromedia.com...
> Using ASP-VBscript I can easily pass form data to a database and I can
> pass it to another form. How do I pass it to BOTH when Submit is clicked?
>
> Thanks.


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 01, 2006 May 01, 2006
OK, could you be a little more specific. . . .
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 01, 2006 May 01, 2006
I would need for you to be specific in what you are trying to achieve.

Are you passing form values which you want to insert into a database, and
then have them appear on another form.

--
Paul Whitham
Certified Dreamweaver MX2004 Professional
Adobe Community Expert - Dreamweaver

Valleybiz Internet Design
www.valleybiz.net

"TomHuffman" <webforumsuser@macromedia.com> wrote in message
news:e36b5o$fbc$1@forums.macromedia.com...
> OK, could you be a little moe specific. . . .


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 01, 2006 May 01, 2006
Precisely. I have a form using DW's Insert Record function. Upon Submit, I want users to be redirected to a page that displays all the information they just inserted into the database.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
May 02, 2006 May 02, 2006
LATEST
There are two ways to do this

1) Either you could write all the form values into Session variables as
part of the insert routine, and then bring these to the redirect page. or
2) On the redirect page create a recordset that grabs the newly created
record ID and then filter the table by that and use a standard recordset.
This link may help you http://www.kamath.com/tutorials/tut007_identity.asp

--
Paul Whitham
Certified Dreamweaver MX2004 Professional
Adobe Community Expert - Dreamweaver

Valleybiz Internet Design
www.valleybiz.net

"TomHuffman" <webforumsuser@macromedia.com> wrote in message
news:e36p58$14d$1@forums.macromedia.com...
> Precisely. I have a form using DW's Insert Record function. Upon Submit, I
> want users to be redirected to a page that displays all the information
> they just inserted into the database.


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines