confirmation

Best way for confirmation email links to submit ID

I've got a web site sending someone a confirmation email. Now in the email I would like to have a link the user has to click to confirm he received the mail. I'd like to include the user's password (or some random code) into the confirmation address, so the user does not need to enter it by hand again, but if I do this, the password wi...

WCF and confirmations - do I need to send back a 'OK got it' to client?

Hi, If I have hundreds/thousands of client computers WCP'ing to my server, should I respond with a '200 OK' type message stating that I received the data and stored it in the db successfully? Is this already built-into WCF? ...

How to run JavaScript prior to System.Web.UI.Timer OnTick?

I need a client-side script to confirm that the Timer's OnTick event can proceed. How do I invoke CanContinue() before the Timer1 postback occurs? How do I cancel the postback if user selects Cancel? <%@ Page Language="C#" %> <script runat="server"> protected void Timer1_OnTick(object sender, EventArgs e) { Response...

Google-Analytics: How do I add an e-mail link as the final step of a goal?

I send a confirmation link via e-mail (in multiple places) but it seems Analytics doesn't recognize those clicks (given URL is visited) unless the visit immediate. I am guessing the last part is about session expiration. How can I define my goal funnel so that confirmation page landings are recognized even after a day or two? My confir...

Windows: How to display a non-blocking Alert/Confirmation window?

I want to realize a simple confirmation/alert box which can be called using a Windows XP/Vista batch script by CLI. The standard alert box seems to be blocking which means that the whole batch script will stop at the time of the alert window call which is NOT what I want. If it needs to be coded, please supply an example or documentati...

How to generate a secure activation string in php?

After user subscribe email to my website. My website will generate an email confirmation and send to them. In the email content, i need to include activation key, something like: www.domain.com/activate.php?key=$generatedKey How do you generate the key? using sha1($email)?? After generate the key, i store it in database, so that when ...

How can I print an HTML document from C# or javascript without user confirmation?

I would like to send a print job to the printer without the user having to click "okay" on the print confirmation dialog window. Either C# code-behind or javascript would be fine, whichever works better. So... I know it it possible to print an HTML document, but is it possible to print without the user clicking okay? The reason I as...

Better way to retain form data on manual back redirect?

I have a form that, on submit, requires the customer to look over the data, and then confirm the changes before saving the data. However, I'm using a really rough way of retaining data if the user hits the back button to go back and look over the data before submitting. Since I want the user's updates to the fields and not the current ...

Order confirmation page in rails.

Hi guys, I've been trying to create an order confirmation page for my rails app, and am not quite sure how to go about it in a restful way. There were a few answers on this question that got me halfway there, but the problem was that I wasn't quite sure how to set up the form in the rails view so that it would take the user to a confir...

how to send email before page redirection

So on my website I have paypal enabled but when the user clicks the "buy now" button I want to shoot an email to the store owner with some information before it redirects to paypal.com. I can't think of how to do this for the life of me because (I don't think) it's ever postedback to my page before it's redirected. Any ideas? It's absolu...

send smtp email through godaddy

So, I'm trying to send an smtp email from my website as a confirmation that their order has been place. The site is hosted on godaddy and I have no idea what's going on. I'm getting all kinds of error messages. The current one is: "System.Net.Mail.SmtpException: Mailbox name not allowed. The server response was: sorry, your mail was ad...

Problems with Error: There was an unexpected Confirmation!

I am trying to delete a user from a table. At first I was getting a timeout error but used the BeatnicClick() as described here: http://stackoverflow.com/questions/1391718/selenium-ide-click-timeout That solved the timeout error but I'm still getting the unexpected confirmation error. Here's part of the source code: selenium.Click(...

How do I create a multilevel popup prompt like in Settings-Safari-Clear History?

I have a UITableView settings screen with options important enough that I should be asking the user to confirm whether or not they meant to hit them. I want to follow the apple convention as much as possible, thus I'd like to implement a warning that looks like this: http://img.photobucket.com/albums/v283/DurAlvar/Screenshot2010-02-03a...

How do I show a confirmation dialog before submitting a form using the jQuery ajax method?

I am using jquery ajax to delete a customer from a table. How would I show a confirmation box before submitting the form? I would preferably like to use jQuery's dialog. I have seen questions like this before but none of them have helped. This is my code: $.ajax({ type: "POST", url: "delete/process.php", da...

Display a warning when leaving the site, not just the page

This sounded like something almost impossible to do when it was presented to me. I know you can display a dialog box to confirm when leaving a web page. But is it possible to display a dialog box when leaving a site? I haven't been able to find/create anything that can read the address bar and know that you're leaving the site. ...

Confirmation on Twitter Follow

I'm new to the twitter API http://apiwiki.twitter.com/Twitter-API-Documentation and I would like to incentivize users on my website to follow me, or re-tweet me by giving them extra privileges on my site if they do. In order to do this, I need some type of confirmation after they have followed me, or retweeted, etc. Is this possible, or ...

Javascript Confirm Delete in One PHP File (on href)

<p><span class="linky"><a href="deletephone.php?id=' . $row['id'] . '">Delete Phone</a></span></p><br /> I have the above code that I am using to link to a delete script. I want to somehow incorporate Javascript with a simple onclick confirmation. This way if they choose OK, I can run the code to delete the item from the database, but ...

JQuery Confirmation Dialog

I have used the jQuery dialog code so that I can prompt my user. Is there a way to catch if the user clicks the close button (the 'X' in the top right? Thanks. ...

ColdFusion email - is there a way to confirm the email has been sent?

Just using the standard cfmail tag, is there a way we can confirm that the email has been sent? I tried cftry/cfcatch but that only confirms that there were no errors in processing the tag, if I put in an invalid mail server, it passes (but mail obviously doesnt send) ...

Jquery dialog confirmation, confirm form post

I am trying to display jquery's dialog confirmation before submitting a form. But I can't get it to popup up only when the form is submitted this is the code: $(function remove() { $("#dialog-confirm").dialog({ resizable: false, height:200, modal: true, buttons: { ...