Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
kt03 #1
warning message (alert)
Hi, I want to create the alert message ' You are about to over writte the
acct, do you wish to continue?'). I need two buttons here, YES/ NO. If user
click YES, then report will be generate, if user click NO, I want the dialog
box open for them to able to select the file and save it. s there away to do
it?, if so please give me some advise or example Thanks
kt03 Guest
-
How to redirect after (header) after sending an alert message
Hi, I have a php script that checks whether the user is allowed to perform an action. If he is not allowed; I display a warning; using the alert... -
How To Supress Acrobat Error Message And Alert Message
Is there any way to supress those pop up message? If can't, is there any way to catch it? -
Javascript alert message problem
Hello. I'm developing and testing a web application using VS.NET 2003, VB, .NET Framework 1.1.4322, ASP.NET 1.1.4322 and IIS5.1 on a WIN XP Pro,... -
Regarding to alert message
Hi If our text contains only characters but wrongly we add the number so alert message will come. In that we want only to remove the number not... -
alert or message box?
I am not clear ... whether to use alert of JavaScript or messagebox of VBScript in ASP. But what I want is that when a user has some error I want... -
sdwebguy99 #2
Re: warning message (alert)
This is a JavaScript question, not ColdFusion, but here is the answer.
JavaScript alert() function only allows an OK button. You will want to use a
JavaScript confirm() function. var msg = 'Blah blah blah... click Yes to
continue or NO to return'; if (confirm(msg)) {
self.location.href='yeslocation.cfm'; } else {
self.location.href='nolocation.cfm'; } Hope that helps!
sdwebguy99 Guest
-



Reply With Quote

