Ask a Question related to Dreamweaver AppDev, Design and Development.
-
montana_field2 #1
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
-
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... -
Property scope in Javascript Syntax [x-post]
Hello everyone! I define a property with getPropertyDescriptionList() with code like this: function getPropertyDescriptionList(me) { var PDL =... -
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... -
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... -
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... -
Drew #2
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
-
montana_field2 #3
Re: Form post syntax
No, I just want to post to database and post to another webpage to provide receipt.
thanks
montana_field2 Guest
-
Drew #4
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



Reply With Quote

