Ask a Question related to Dreamweaver AppDev, Design and Development.
-
wee_elks #1
insert success message
I have several pages that insert records into a sql db. Some of them take the
user back to the insert page so they can insert another record. How can I add
some script to say that the previous insert worked?
wee_elks Guest
-
Insert giving message on server but not locally
I am getting the following error when I try to insert a record into my database on the server: Error Executing Database Query. Syntax error in... -
Success message after file download
Another way is to do this on the page <script language="JavaScript"> window.location.href="index.cfm?action=FileDownloaded"; </script> then on... -
Checking success/failure of sending CDO.Message
Hi, I have been searching all over the internet and MSDN for a simple answer and have found none... I have some ASP/VbScript code (that I didn't... -
PHP- Creating a "success" message for a form
I am working on a simple form to use as a guesbook. When the user enters thier name, subject and commnents the meesage should read 'Your message was... -
Paul Whitham TMM #2
Re: insert success message
On your redirect append a parameter to the URL and then on the insert page
so a message depending upon the URL parameter exisiting
--
Regards
Paul Whitham
Macromedia Certified Professional for Dreamweaver MX2004
Valleybiz Internet Design
[url]www.valleybiz.net[/url]
Team Macromedia Volunteer for Ultradev/Dreamweaver MX
[url]www.macromedia.com/support/forums/team_macromedia[/url]
"wee_elks" <webforumsuser@macromedia.com> wrote in message
news:d5bc6a$p7n$1@forums.macromedia.com...the> I have several pages that insert records into a sql db. Some of them takeadd> user back to the insert page so they can insert another record. How can I> some script to say that the previous insert worked?
>
Paul Whitham TMM Guest
-
wee_elks #3
Re: insert success message
Thanks Paul. Can you either direct me to or give me an example.
Here is my redirect as it is now:
MM_editRedirectUrl = "input_sales.asp"
wee_elks Guest
-
Paul Whitham TMM #4
Re: insert success message
You would change this to
MM_editRedirectUrl = "input_sales.asp?success=yes"
and then on the input_sales.asp page you would have the following
<%
if request.Querystring("success") = "yes" then
response.write("your success message")
End if
%>
--
Regards
Paul Whitham
Macromedia Certified Professional for Dreamweaver MX2004
Valleybiz Internet Design
[url]www.valleybiz.net[/url]
Team Macromedia Volunteer for Ultradev/Dreamweaver MX
[url]www.macromedia.com/support/forums/team_macromedia[/url]
"wee_elks" <webforumsuser@macromedia.com> wrote in message
news:d5d356$7b8$1@forums.macromedia.com...> Thanks Paul. Can you either direct me to or give me an example.
>
> Here is my redirect as it is now:
>
> MM_editRedirectUrl = "input_sales.asp"
Paul Whitham TMM Guest



Reply With Quote

