Need popup window from cfform to go to PayPal using their button

I have a cfform page (ColdFusion 8) that is embedded in an iframe in my standard html webpage. (Embedded so that I still have the same outer "envelope" as the rest of the pages; nav bars, etc.) I have the form post back to itself in order to check for injection problems, validation beyond basic form validation, etc, then insert form entries into a database. I am trying to then pass the visitor on to PayPal for them to make the payment. This could be either by way of a popup window or a redirect. The problem is that if I just put the PayPal button in my .cfm page it doesn't work. Also, it seems I need to get it out of the iframe context. Of course it would be nice to go the other way (which I have also tried) and have the potential donor first go to PayPal, enter their info, and then have them redirected back to my page. I realize I could then get some of the info I need from them (name, email, etc) in the PayPal IPN return, but there are 2 problems with this. 1) I have to rely on them clicking the "go back to ....." link in PayPal and 2) I still need other info that PayPal doesn;t pick up, like what department category they want their donation to go to, etc. which I can get up front from them if I go the first route mentioned.
I have looked into cfhttp and cflocation tags. I don't seem to be finding any clearcut answers!
Thanks for any help in advance!

This link may help.
http://www.danvega.org/blog/index.cfm/2008/3/4/ColdFusion-8-Grid-Context-Menu-Part-II

Similar Messages

  • Open popup window from non graphic window

    Hi All,
    i'm trying to open a popupwindow of one of my classes, but i
    have no parent reference in the current class that i'm working
    with, how can i refer to the main application window?

    If you have a model for your application state, use this:
    <mx:Application
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    applicationComplete="this.onApplicationComplete()">
    <mx:Script>
    <![CDATA[
    private function onApplicationComplete():void
    // Component map
    this.model.map["app"] = this;
    ]]>
    </mx:Script>
    </mx:Application>
    You will be able to refer to this.model.map["app"] as the
    parent of your popup window from anywhere in the application.

  • Reg: Internal popup window from multiple Views

    HI All,
        I have a Internal Popup window() from 5 views, I am able to open a window and close from view1(according to the docs from SDN).
    I tried using the same logic in remaining views(2,3,4,5).
    I am able to open but while closing the window event fired is going to CompController and return to the "Parent window" of the Popup. For view2,3,4,5 this not taken as a parent window. Please help me
    Thanks
    Nagaraju

    Hi Naga,
    Disable the parent iviews message area before calling the child(popup) window. Then you can get the message in the child(popup) window.
    According to documentation, oldest (parent) message area would be used if there are more than one windows (in a layout).
    see this thread also How to display messages in pop up windows?
    PradeeP

  • Open a Form in a popup window from a PL/SQL portlet

    Hi,
    I have a form that I want to open in a popup window from a URL in a PL/SQL portlet. What is the easiest way to do this? Are there any examples in here or on Metalink as to how to achieve this?
    Thanks,
    Steve West

    Is it a HTML page somewhere on a server with a HTML form on it? You can use javascript tags in ur link to do this maybe?
    javascript:window.open('http://<server name>/page.htm','mywindow','width=400,height=200')
    Obviously if this is a portal form you can also link directly to the show procedure no problems.

  • I lost all the information in the ical. I am using icloud and info desapear from ical and several times from my agenda too. But I desperately need the info from my ical. I tried using the time machine but i received a messagem saying that they can not mod

    I am using icloud and info desapear from ical and several times from my agenda too.
    But I desperately need the info from my ical.
    I tried using the time machine but i received a messagem saying that they can not modify ical.
    Can somebody help me?

    First of all, we are not Adobe.  This is a user to user forum.  We are consumers just like you. And I have arthritis, too, although not severe.
    Now let's see if we can help you resolve your problem.
    Where was it purchased from?
    Was it downloaded or was a disc purchased?
    What is your operating system?
    Is it version Photoshop Elements 13?
    Did you use a redemption code to get a serial number?
    Did you sign in/activate?
    Did you create an Adobe account?

  • Cannot load my library onto my ipod since getting icloud?  Itunes states that I need to download from icloud?  Can I not use my ipod as I did pre-icloud?

    cannot load my library onto my ipod since getting icloud?  Itunes states that I need to download from icloud?  Can I not use my ipod as I did pre-icloud?

    Chris CA wrote:
    You cannot backup photos to iCloud.
    You can enable Photo Stream (in Settings > iCloud) but only for 30 days and only a max of 1000 photos.
    Then what does this mean? It was copied from the kb article that I posted above.
    Reducing the size of your Camera Roll backup
    If you take lots of photos and videos with your iOS device, you may notice your Camera Roll takes up most of your iCloud Storage backup. To check the size of the Camera Roll backup on your device:
    On your Home Screen, tap Settings.
    Tap iCloud.
    Tap Storage & Backup.
    Tap Manage Storage.
    In the Backups section, tap your device.
    In the Backup Options section, the backup size is displayed under Camera Roll.
    To reduce the size of your Camera Roll backup, save your photos and videos locally to your computer with iTunes, and then manually back up your iOS device. If you want to keep your photos and videos on your iOS device, you can turn off Camera Roll in Backup (see the "Deleting backups and turning off Backup for your Device" section above) orpurchase additional storage.

  • Need to have a popup window from a link in a cfgrid

    I've got a cfgrid that is displaying some program
    information. I want the program number to have a link to a pop-up
    window which contains an edit form for that program.
    Here is the script for the popup window I used on my page
    before I implemented a cfgrid:
    <script type="text/javascript">
    function loadEditForm(id) {
    windowReference =
    window.open('frmPrograms.cfm?CFGRIDKEY='+id,"editProgramWindow",'scrollbars=no,menubar=no ,height=500,width=750,resizable=no,toolbar=no,location=no,status=no');
    </script>
    I've already changed the url to use the CFGRIDKEY.
    Here are my cfgridcolumns:
    <cfgridcolumn name="program_id" display="no">
    <cfgridcolumn name="program_name" header="Name"
    bold="yes" href="?" hrefkey="program_id" width="300"
    type="string_noCase">
    <cfgridcolumn name="description" header="Description"
    width="650" select="no">
    I tried making the program_name cfgridcolumn have an
    href="javascript:loadEditForm(#URLEncodedFormat(Trim(program_id))#)"
    but this isn't working. I get an error message that the variable
    program_id doesn't exist.
    I've done a grid that links to an edit form in another
    section, the difference is that wasn't using a pop-up window. And I
    can send my form to a new window using target=_blank, but I really
    would rather use a pop-up window for this.

    This link may help.
    http://www.danvega.org/blog/index.cfm/2008/3/4/ColdFusion-8-Grid-Context-Menu-Part-II

  • Popup window from webview

    When the user clicks on a link, the link won't open because the creator made it so that it opens in a new window. (popup window)
    set somes to "http://openwebim.org/webim"
    try
    loadPage from somes
    on error
    return
    end try
    that code is what i have. It loads the website on the webview. Now i need to have it open those links... somehow.

    You need to start at the beginning. We can't see your application, the window, webview, or your AppleScript from here. It is difficult to determine your question without a little bit (OK, a lot) of background information.

  • Close the ADF popup window from deployed JSP in other server

    I am attempting to open jsp page which one is deployed on tomcat server in adf pop up window from cmd button event.and this first jsp will forward to second jsp and i should able to close from pop window from second jsp close button.
    This is what i did:
    1) created pop-up window and run the delployed jsp on pop up page
    2) i used window.close script in second jsp but not popup window is not get closed .
    help me to achieve this pblm ....

    i was trying to open &close other server's jsp from ADF pop-up window ... so base is internal window (pop-up) only ,
    and already i used onclick="window.close();" in command button...but its not closeing the adf pop-up window ... how that jsp cmd button onclick event take control of adf pop-up to close ?
    help me ???

  • Opening a popup window from flash

    Hi, I'm about to lose it--I've tried everything and nothing
    seems to work! What I'm trying to do is open a pop-up window from a
    swf that needs to have a certain height and width and no nav bar.
    I've tried several techniques including putting javascript in the
    containing html file and having nothing in the HTML file. If anyone
    has any idea please let me know, thanks!

    artboy_sf,
    > Hi, I'm about to lose it--I've tried everything and
    nothing seems
    > to work! What I'm trying to do is open a pop-up window
    from
    > a swf that needs to have a certain height and width and
    no nav bar.
    I wonder if you're testing your efforts from the Flash
    authoring tool.
    With the Flash Player security sandbox, lately, you'll have
    to upload to a
    server to test in a browser.
    > I've tried several techniques including putting
    javascript in the
    > containing html file and having nothing in the HTML
    file. If
    > anyone has any idea please let me know, thanks!
    I wrote a tutorial on this -- both AS2 and AS3 -- not long
    ago for
    CommunityMX.com. It's a subscription site, and some of the
    articles are
    free, but this one isn't ... BUT ... you can sign up for a
    free trial
    subscription, check it out, then cancel if you like.
    http://www.communitymx.com/abstract.cfm?cid=F0639
    If I reference an article in my forum replies, I normally
    try to answer
    with a tutorial from my blog (free), or one of the free CMX
    articles, but I
    imagine you've already Googled around a bit. The CMX tutorial
    includes
    sample files, and you really won't be out any money.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • Opening a popup window from another popup

    Hi,
    I want to know if a popup window can be opened from another popup window??
    Iam trying to do this from a JSP page
    <td><a href="../common/help/Help_FAQ.html" onClick="return popup(this, 'FAQ','width=900,height=500,scrollbars=1')">FAQ.Now I have another link in FAQ page, which when clicked , rather than opening a separate full size window, overlays on the FAQ window with the FAQ window width and height.
    Any help is appreciated.

    Thanks.
    It was a mistake on my end.
    Instead of having <script type ="text/javascript"> I had only "javascript"
    and the page was not picking up the function .
    Now,, It is solved.

  • What is, how to fix, stop, small popup window from 'plugin-container.exe' with 3 digit number that won't stop re-appearing???

    I get very small windows popping up on the screen on top of anything else I'm doing regardless of what apps I'm running or not running. If I R-click on the icon in the task bar, it's identified as "plugin-container.exe"
    The window doesn't say why it's there, but only displays a 3 digit number (for example the on on the screen now says 587) and allows only the usual X to close, or an 'OK' button to close. But a short time later it pops up again.
    I'm running Windows 7 64bit MS Security Essentials and Firefox, though it will pop up even if I just booted and haven't started Firefox yet.
    It's really (really really) annoying. How can I fix it or disable it or whatever it takes to make it STOP.
    Perhaps if I had some idea what it was I could attack it that way, but I haven't a clue. BTW, I've cleaned the registry, and done full scan's for virus and turned up nada.
    Thanks.
    D.

    As per the web site:
    There will be no update to Waterfox 25.0 as a bug causes Adobe Flash to crash on 64-Bit Windows 7 systems. Bug here. Although Firefox 25.0.1 is now available and we could build it, there would be no point of releasing a new version of Waterfox for only two weeks.
    I mostly only use Waterfox and had no problem in the past. I suspect a flash problem may be at the root of my problem however.
    As stated, I've performed (full) virus scans with MS Security Essentials. Also with Housecall, and also with HiJackThis. No problems detected.
    Screen shot of popup window attached.

  • Identify selected popup window from others

    hi
    i have a problem with multiple popup windows.can't identify
    selected popup and closed pop up by code.does any one has any
    idea.i can remove popup that last created but can't remove
    previously created.

    i found the way to identify selected popup window form rest
    of others like
    //register event listener to the popup window u created
    login.addEventListener("close", removeForm)
    //function
    private function removeForm(event:CloseEvent):void {
    PopUpManager.removePopUp(IFlexDisplayObject(event.currentTarget));
    if this one not clear don't hesitate to send me private
    message
    cheers

  • Html Popup window from shockwave movie.

    I want to open a .html page from a button in a director
    movie.
    I want to be able to specify the dimensions of the html popup
    in the script and specify it to have no toolbars or the like.
    Thanks for helping.

    In the HTML file that contains your Shockwave movie, put a
    JavaScript handler for the pop-up window. Then call the JavaScript
    Handler from the movie.
    Worked for me.
    /Rob

  • I have my popups blocked and have also added Adblock but I'm still getting popup windows FROM firefox constantly. Very annoying.

    I've have tried researching it online but I just hear the same things over and over and they are helping. The popups are coming from Firefox and say Firefox in the corner. How do I get rid of them? I've been really happy with Firefox until now.

    hello, you have various adware addons installed, that might cause this. please go to ''firefox > addons > extensions'' & remove any suspicious entries (toolbars, things that you have not installed intentionally, don't know what purpose they serve, etc). also go to the windows control panel / programs and remove all toolbars or potentially unwanted software from there and run a full scan of your system with the security software that you have in place and different other tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] & [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner].
    [[Remove a toolbar that has taken over your Firefox search or home page]]
    [[Troubleshoot Firefox issues caused by malware]]

Maybe you are looking for